aboutsummaryrefslogtreecommitdiff
path: root/win32/include/stdio.h
diff options
context:
space:
mode:
authorUrs Janssen <urs@hq.tin.org>2013-02-17 00:48:51 +0100
committerUrs Janssen <urs@hq.tin.org>2013-02-17 00:48:51 +0100
commit0bdbd49eac6ced7fbf6b5d2f5a13d7e9f3df54db (patch)
treeb3acd59ac51d9d8e426b6546fd6840e381c0982e /win32/include/stdio.h
parentd5e22108a0dc48899e44a158f91d5b3215eb7fe6 (diff)
downloadtinycc-0bdbd49eac6ced7fbf6b5d2f5a13d7e9f3df54db.tar.gz
tinycc-0bdbd49eac6ced7fbf6b5d2f5a13d7e9f3df54db.tar.bz2
add version number to manpage
avoid c++/c99 style comments in preprocessor directives avoid leadings whitespaces in preprocessor directives mention implemented variable length arrays in documentation fixed ambiguous option in texi2html call (Austin English)
Diffstat (limited to 'win32/include/stdio.h')
-rw-r--r--win32/include/stdio.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/win32/include/stdio.h b/win32/include/stdio.h
index 627fc92..da88793 100644
--- a/win32/include/stdio.h
+++ b/win32/include/stdio.h
@@ -241,8 +241,8 @@ extern FILE (*_imp___iob)[]; /* A pointer to an array of FILE */
/* Make sure macros are not defined. */
#pragma push_macro("vsnprintf")
#pragma push_macro("snprintf")
- #undef vsnprintf
- #undef snprintf
+# undef vsnprintf
+# undef snprintf
extern
__attribute__((format(gnu_printf, 3, 0))) __attribute__((nonnull (3)))
int __mingw_vsnprintf(char *_DstBuf,size_t _MaxCount,const char *_Format,va_list _ArgList);
@@ -267,14 +267,14 @@ extern FILE (*_imp___iob)[]; /* A pointer to an array of FILE */
#pragma pop_macro("snprintf")
#pragma pop_macro("vsnprintf")
/* Check if vsnprintf and snprintf are defaulting to gnu-style. */
- #if defined(USE_MINGW_GNU_SNPRINTF) && USE_MINGW_GNU_SNPRINTF
- #ifndef vsnprint
- #define vsnprintf __mingw_vsnprintf
- #endif
- #ifndef snprintf
- #define snprintf __mingw_snprintf
- #endif
- #endif
+# if defined(USE_MINGW_GNU_SNPRINTF) && USE_MINGW_GNU_SNPRINTF
+# ifndef vsnprint
+# define vsnprintf __mingw_vsnprintf
+# endif
+# ifndef snprintf
+# define snprintf __mingw_snprintf
+# endif
+# endif
_CRTIMP int __cdecl _vscprintf(const char *_Format,va_list _ArgList);
_CRTIMP int __cdecl _set_printf_count_output(int _Value);
_CRTIMP int __cdecl _get_printf_count_output(void);