summaryrefslogtreecommitdiffstats
path: root/include/stdio.h
diff options
context:
space:
mode:
authorrobert <robert@FreeBSD.org>2002-08-14 23:45:42 +0000
committerrobert <robert@FreeBSD.org>2002-08-14 23:45:42 +0000
commit4b64f84a432f94425359802d506816872f43c5d7 (patch)
tree4a5ee2a856f08d941a04f571a20db00d3d4f6f88 /include/stdio.h
parentf0abd50e99b630b7ce1849ce6d024d7ea4b3bc98 (diff)
downloadFreeBSD-src-4b64f84a432f94425359802d506816872f43c5d7.zip
FreeBSD-src-4b64f84a432f94425359802d506816872f43c5d7.tar.gz
- Add the 'restrict' qualifier to the function definitions and
public prototypes of setbuf(3) and setvbuf(3) using the '__restrict' macro from <sys/cdefs.h> to be compliant with IEEE Std 1003.1-2001. - Replace the K&R with ANSI-C function definitions. - Bring the manual page up-to-date.
Diffstat (limited to 'include/stdio.h')
-rw-r--r--include/stdio.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/stdio.h b/include/stdio.h
index 0d241fa..4067b79 100644
--- a/include/stdio.h
+++ b/include/stdio.h
@@ -243,8 +243,8 @@ int remove(const char *);
int rename(const char *, const char *);
void rewind(FILE *);
int scanf(const char *, ...);
-void setbuf(FILE *, char *);
-int setvbuf(FILE *, char *, int, size_t);
+void setbuf(FILE *__restrict, char *__restrict);
+int setvbuf(FILE *__restrict, char *__restrict, int, size_t);
int sprintf(char *, const char *, ...);
int sscanf(const char *, const char *, ...);
FILE *tmpfile(void);
OpenPOWER on IntegriCloud