-
-
Save pskocik/5ae174efeb2699cb97d60731d7179bb9 to your computer and use it in GitHub Desktop.
c.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#if !__STDC__ | |
# error "< C89" | |
#endif | |
#if __STDC_HOSTED__ | |
# 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> | |
# if __STDC_VERSION__ >= 199409L /*>= C94 */ | |
# include <iso646.h> | |
# include <wctype.h> | |
# include <wchar.h> | |
# endif | |
# if __STDC_VERSION__ >= 199901L /*>= C99*/ | |
# if !__STDC_NO_COMPLEX__ | |
# include <complex.h> | |
#endif | |
# include <fenv.h> | |
# include <inttypes.h> | |
# include <stdbool.h> | |
# include <stdint.h> | |
# include <tgmath.h> | |
# endif | |
# if __STDC_VERSION__ >= 201112L /*>= C11*/ | |
# include <stdalign.h> | |
# if !__STDC_NO_ATOMICS__ | |
# include <stdatomic.h> | |
# endif | |
# include <stdnoreturn.h> | |
# if !__STDC_NO_THREADS__ | |
# include <threads.h> | |
# endif | |
# include <uchar.h> | |
# endif | |
#endif /*HOSTED*// |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment