mirror of
https://github.com/facebook/zstd
synced 2026-08-22 22:32:07 -04:00
Fix building on AIX 5.1
This commit is contained in:
parent
b951ad20a2
commit
cc907770bd
9 changed files with 45 additions and 9 deletions
|
|
@ -28,7 +28,11 @@ extern "C" {
|
|||
******************************************/
|
||||
|
||||
#if !defined (__VMS) && (defined (__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */) )
|
||||
# include <stdint.h>
|
||||
# if defined(_AIX)
|
||||
# include <inttypes.h>
|
||||
# else
|
||||
# include <stdint.h> /* intptr_t */
|
||||
# endif
|
||||
typedef uint64_t PTime; /* Precise Time */
|
||||
#else
|
||||
typedef unsigned long long PTime; /* does not support compilers without long long support */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue