Skip to content

Instantly share code, notes, and snippets.

@pskocik
Created June 17, 2017 20:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pskocik/5ae174efeb2699cb97d60731d7179bb9 to your computer and use it in GitHub Desktop.
Save pskocik/5ae174efeb2699cb97d60731d7179bb9 to your computer and use it in GitHub Desktop.
c.h
#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