diff options
Diffstat (limited to 'src/stdint/UINT8_C.h')
-rw-r--r-- | src/stdint/UINT8_C.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/stdint/UINT8_C.h b/src/stdint/UINT8_C.h new file mode 100644 index 00000000..5d269bb7 --- /dev/null +++ b/src/stdint/UINT8_C.h @@ -0,0 +1,7 @@ +#include <stdint.h> + +#define UINT8_C(__value) ((uint_least8_t)__value) + +/* +STDC(199901) +*/ |