diff options
| author | Robert Drehmel <robert@FreeBSD.org> | 2002-08-15 10:28:52 +0000 |
|---|---|---|
| committer | Robert Drehmel <robert@FreeBSD.org> | 2002-08-15 10:28:52 +0000 |
| commit | f8418db73e3d0515fb582fa9a093019c08434267 (patch) | |
| tree | 489a3958750fd27896cde415ed639eae393d181d /include/stdio.h | |
| parent | 71a00a449fdf93f68bc8357bb412ff94b653e30d (diff) | |
Notes
Diffstat (limited to 'include/stdio.h')
| -rw-r--r-- | include/stdio.h | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/include/stdio.h b/include/stdio.h index 19f6208b3181..d64e6903a524 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -250,14 +250,17 @@ int sscanf(const char *, const char *, ...); FILE *tmpfile(void); char *tmpnam(char *); int ungetc(int, FILE *); -int vfprintf(FILE *, const char *, _BSD_VA_LIST_); -int vprintf(const char *, _BSD_VA_LIST_); -int vsprintf(char *, const char *, _BSD_VA_LIST_); +int vfprintf(FILE *__restrict, const char *__restrict, + _BSD_VA_LIST_); +int vprintf(const char *__restrict, _BSD_VA_LIST_); +int vsprintf(char *__restrict, const char *__restrict, + _BSD_VA_LIST_); #if __ISO_C_VISIBLE >= 1999 -int snprintf(char *__restrict, size_t, const char *__restrict, ...) __printflike(3, 4); -int vsnprintf(char *, size_t, const char *, _BSD_VA_LIST_) - __printflike(3, 0); +int snprintf(char *__restrict, size_t, const char *__restrict, + ...) __printflike(3, 4); +int vsnprintf(char *__restrict, size_t, const char *__restrict, + _BSD_VA_LIST_) __printflike(3, 0); #endif /* |
