diff options
Diffstat (limited to 'src/stdint/INT64_C.c')
-rw-r--r-- | src/stdint/INT64_C.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/stdint/INT64_C.c b/src/stdint/INT64_C.c new file mode 100644 index 00000000..ee8fdafa --- /dev/null +++ b/src/stdint/INT64_C.c @@ -0,0 +1,6 @@ +#include <stdint.h> +#define INT64_C(value) ((int_least64_t)value##LL) + +/* +STDC(199901) +*/ |