123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- #ifndef PHP_STDINT_H
- #define PHP_STDINT_H
- #ifdef __cplusplus
- # ifndef __STDC_LIMIT_MACROS
- # define __STDC_LIMIT_MACROS
- # endif
- # ifndef __STDC_CONSTANT_MACROS
- # define __STDC_CONSTANT_MACROS
- # endif
- # ifndef __STDC_FORMAT_MACROS
- # define __STDC_FORMAT_MACROS
- # endif
- #endif
- #include <inttypes.h>
- #include <stdint.h>
- #if defined(_MSC_VER)
- # ifndef u_char
- typedef unsigned __int8 u_char;
- # endif
- #endif
- #endif
|