swig/Lib/python/pymisctypes.swg
Marcelo Matus 53f6f300a0 better size_t/ptrdiff_t mapping
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6420 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2004-10-18 00:28:16 +00:00

16 lines
326 B
Text

/* ------------------------------------------------------------
* --- ANSI/Posix C/C++ types ---
* ------------------------------------------------------------ */
typedef unsigned long size_t;
typedef long ptrdiff_t;
#ifdef __cplusplus
namespace std {
typedef unsigned long size_t;
typedef long ptrdiff_t;
}
#endif