diff options
author | Jakob Kaivo <jkk@ung.org> | 2019-12-04 09:31:40 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2019-12-04 09:31:40 -0500 |
commit | 0358353af5b2619b5c42970d48831dad27886370 (patch) | |
tree | 0f626380d838264716f604782de22d3f59313bea /_stdio.h | |
parent | f602ac37820294b4e38f9a06ae7253be8426e8b3 (diff) | |
parent | c9d408f4a83e8dd569699b0a8393d9311aafbcc3 (diff) |
Merge branch 'master' of gitlab.com:jkaivo/libc-tests
Diffstat (limited to '_stdio.h')
-rw-r--r-- | _stdio.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/_stdio.h b/_stdio.h new file mode 100644 index 0000000..bc96470 --- /dev/null +++ b/_stdio.h @@ -0,0 +1,39 @@ +#ifndef NULL +#error NULL not defined +#endif +#ifndef _IOFBF +#error _IOFBF not defined +#endif +#ifndef _IOLBF +#error _IOLBF not defined +#endif +#ifndef _IONBF +#error _IONBF not defined +#endif +#ifndef BUFSIZ +#error BUFSIZ not defined +#endif +#ifndef EOF +#error EOF not defined +#endif +#ifndef FILENAME_MAX +#error FILENAME_MAX not defined +#endif +#ifndef FOPEN_MAX +#error FOPEN_MAX not defined +#endif +#ifndef L_tmpnam +#error L_tmpnam not defined +#endif +#ifndef SEEK_CUR +#error SEEK_CUR not defined +#endif +#ifndef SEEK_END +#error SEEK_END not defined +#endif +#ifndef SEEK_SET +#error SEEK_SET not defined +#endif +#ifndef TMP_MAX +#error TMP_MAX not defined +#endif |