git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6420 626c5289-ae23-0410-ae9c-e8d60b6d4f22
16 lines
326 B
Text
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
|
|
|