1234567891011121314151617181920212223242526272829303132 |
- #ifndef INTL_CPPSHIMS_H
- #define INTL_CPPSHIMS_H
- #ifndef __cplusplus
- #error For inclusion form C++ files only
- #endif
- #ifdef _MSC_VER
- #include <stdio.h>
- #include <math.h>
- #define _MSC_STDINT_H_ 1
- #endif
- #endif
|