diff options
author | Chris Sutcliffe <ir0nh34d@users.sourceforge.net> | 2009-07-18 15:19:03 +0000 |
---|---|---|
committer | Chris Sutcliffe <ir0nh34d@users.sourceforge.net> | 2009-07-18 15:19:03 +0000 |
commit | d4e45e3b99bd14e4253246518fced5eb5a8bcd58 (patch) | |
tree | 3ef575928f1ea584c8331128a3880d066cf430d4 /winsup/mingw/include/stdio.h | |
parent | affde4a6b3666f21e346166d42f2414047753e2b (diff) | |
download | cygnal-d4e45e3b99bd14e4253246518fced5eb5a8bcd58.tar.gz cygnal-d4e45e3b99bd14e4253246518fced5eb5a8bcd58.tar.bz2 cygnal-d4e45e3b99bd14e4253246518fced5eb5a8bcd58.zip |
2009-07-18 Gregory McGarry <gregorymcgarry@users.sourceforge.net>
* include/inttypes.h include/math.h include/stdio.h include/stdlib.h
include/string.h include/unistd.h include/wchar.h: Add __NO_INLINE__ guard
to all inline functions.
Diffstat (limited to 'winsup/mingw/include/stdio.h')
-rw-r--r-- | winsup/mingw/include/stdio.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/winsup/mingw/include/stdio.h b/winsup/mingw/include/stdio.h index 1765bed9d..163bbb2f2 100644 --- a/winsup/mingw/include/stdio.h +++ b/winsup/mingw/include/stdio.h @@ -601,9 +601,11 @@ _CRTIMP FILE* __cdecl __MINGW_NOTHROW _wpopen (const wchar_t*, const wchar_t*); #ifndef __NO_ISOCEXT /* externs in libmingwex.a */ int __cdecl __MINGW_NOTHROW snwprintf (wchar_t* s, size_t n, const wchar_t* format, ...); +#ifndef __NO_INLINE__ __CRT_INLINE int __cdecl __MINGW_NOTHROW vsnwprintf (wchar_t* s, size_t n, const wchar_t* format, __VALIST arg) { return _vsnwprintf ( s, n, format, arg);} +#endif int __cdecl __MINGW_NOTHROW vwscanf (const wchar_t * __restrict__, __VALIST); int __cdecl __MINGW_NOTHROW vfwscanf (FILE * __restrict__, const wchar_t * __restrict__, __VALIST); |