int64_t on for 64bit systems
This commit is contained in:
parent
b617a264f2
commit
83387b45c0
@ -28,8 +28,14 @@
|
||||
#include <stdarg.h>
|
||||
#include "defines.h"
|
||||
|
||||
#if defined(LIN64) || defined(USE_STDINT)
|
||||
#include <sys\types.h>
|
||||
#include <stdint.h>
|
||||
#else
|
||||
typedef long long int int64_t;
|
||||
typedef unsigned long long int uint64_t;
|
||||
#endif
|
||||
|
||||
|
||||
#define BSON_OK 0
|
||||
#define BSON_ERROR -1
|
||||
|
Reference in New Issue
Block a user