diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-10-17 23:47:21 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-10-17 23:47:21 +0200 |
commit | 6070ecc77e300aeb1d459143338c7a77f9fe5f0e (patch) | |
tree | f79b07a4fc5142b003f4d8475e8ba1b7a6507b16 | |
parent | add asprintfa and aswprintfa (diff) | |
download | slibc-6070ecc77e300aeb1d459143338c7a77f9fe5f0e.tar.gz slibc-6070ecc77e300aeb1d459143338c7a77f9fe5f0e.tar.bz2 slibc-6070ecc77e300aeb1d459143338c7a77f9fe5f0e.tar.xz |
typo
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r-- | include/stdio.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/stdio.h b/include/stdio.h index 2b63ded..5a0173d 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -662,7 +662,8 @@ int aswprintf(wchar_t** restrict, const wchar_t* restrict, ...) __GCC_ONLY(__attribute__((__nonnull__(1, 2), __warn_unused_result__))); # endif -# if defined(__SLIBC_SOURCE)# if defined(__GNUC__) +# if defined(__SLIBC_SOURCE) +# if defined(__GNUC__) /** * This function is identical to `swprintf`, * except it allocates a sufficiently large @@ -702,7 +703,7 @@ int aswprintfa(buffer, format, ...) \ __r = swprintf(*buffer, (size_t)__size, format, ##__VA_ARGS__); \ __r; \ }) -# endif +# endif /** * This function is identical to `bprintf` except |