1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2025-08-03 12:49:50 +00:00

fix code format

This commit is contained in:
bolero-MURAKAMI 2016-04-05 11:57:06 +09:00
parent aa8e265188
commit a0060119ab
31 changed files with 379 additions and 379 deletions

View file

@ -14,20 +14,20 @@
#define SPROUT_LANG_STDC 0
#if defined(__STDC__)
# undef SPROUT_LANG_STDC
# if defined(__STDC_VERSION__)
# if (__STDC_VERSION__ > 100)
# define SPROUT_LANG_STDC SPROUT_PREDEF_MAKE_YYYYMM(__STDC_VERSION__)
# else
# define SPROUT_LANG_STDC 1
# endif
# else
# define SPROUT_LANG_STDC 1
# endif
# undef SPROUT_LANG_STDC
# if defined(__STDC_VERSION__)
# if (__STDC_VERSION__ > 100)
# define SPROUT_LANG_STDC SPROUT_PREDEF_MAKE_YYYYMM(__STDC_VERSION__)
# else
# define SPROUT_LANG_STDC 1
# endif
# else
# define SPROUT_LANG_STDC 1
# endif
#endif
#if SPROUT_LANG_STDC
# define SPROUT_LANG_STDC_AVAILABLE
# define SPROUT_LANG_STDC_AVAILABLE
#endif
#define SPROUT_LANG_STDC_NAME "Standard C"