diff options
| author | 2026-03-23 12:10:58 +0100 | |
|---|---|---|
| committer | 2026-03-23 12:10:58 +0100 | |
| commit | 4f2fb9ba5f529890b2a341e30a1c0c978a882e3a (patch) | |
| tree | 96470481c074deeb856731a14be2045d297b730a /test | |
| parent | c1267dbfeb153c782e9690de8962aaf176ed0cdd (diff) | |
<iso646.h>, test for libc headers
Diffstat (limited to 'test')
| -rw-r--r-- | test/19-libc-headers.c | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/test/19-libc-headers.c b/test/19-libc-headers.c new file mode 100644 index 0000000..2c8db38 --- /dev/null +++ b/test/19-libc-headers.c @@ -0,0 +1,48 @@ +/* EXPECT: +*/ + +/* C89 */ +#include <assert.h> +#include <ctype.h> +#include <errno.h> +#include <float.h> +#include <limits.h> +#include <locale.h> +#include <math.h> +#include <setjmp.h> +#include <signal.h> +#include <stdarg.h> +#include <stddef.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <time.h> +#include <wchar.h> +#include <wctype.h> +#include <iso646.h> + +/* C99 */ +#include <complex.h> +#include <fenv.h> +#include <inttypes.h> +#include <stdbool.h> +#include <stdint.h> +#include <uchar.h> + +/* C11 */ +#include <stdalign.h> +#ifndef __STDC_NO_ATOMICS__ +#include <stdatomic.h> +#endif +#include <threads.h> +#include <stdnoreturn.h> +#include <stdbit.h> + +/* C23 */ +// #include <stdbit.h> +// #include <stdckdint.h> +// #include <tgmath.h> + +int main(void) { + return 0; +} |