freestanding-headers/cstdint

17 lines
222 B
Plaintext
Raw Normal View History

2023-03-16 00:50:24 +03:00
#ifndef __cplusplus
#error "Must only use this header with C++"
#endif
#ifndef _CSTDINT
#define _CSTDINT 1
namespace std {
#define __LIBC_GUARDLESS_INCLUDE
#include <stdint.h>
#undef __LIBC_GUARDLESS_INCLUDE
}
#endif