diff options
Diffstat (limited to 'source4/lib')
-rw-r--r-- | source4/lib/appweb/ejs/config.h | 2 | ||||
-rw-r--r-- | source4/lib/appweb/mpr/miniMpr.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/source4/lib/appweb/ejs/config.h b/source4/lib/appweb/ejs/config.h index de8a1096c91..feec3c9e5b1 100644 --- a/source4/lib/appweb/ejs/config.h +++ b/source4/lib/appweb/ejs/config.h @@ -58,7 +58,7 @@ #define BLD_FEATURE_MALLOC_STATS 0 #define BLD_FEATURE_MALLOC_LEAK 0 #define BLD_FEATURE_MALLOC_HOOK 0 -#define BLD_FEATURE_NUM_TYPE int64 +#define BLD_FEATURE_NUM_TYPE int64_t #define BLD_FEATURE_NUM_TYPE_ID MPR_TYPE_INT64 #define BLD_FEATURE_ROMFS 0 #define BLD_FEATURE_RUN_AS_SERVICE 0 diff --git a/source4/lib/appweb/mpr/miniMpr.h b/source4/lib/appweb/mpr/miniMpr.h index bf57d50abcd..58f47d256af 100644 --- a/source4/lib/appweb/mpr/miniMpr.h +++ b/source4/lib/appweb/mpr/miniMpr.h @@ -199,8 +199,8 @@ typedef unsigned char uchar; #ifndef uint #define uint unsigned #endif - __extension__ typedef long long int int64; - __extension__ typedef unsigned long long int uint64; + typedef long long int int64; + typedef unsigned long long int uint64; #endif /* |