summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/fopen.c
diff options
context:
space:
mode:
authorMike Barcroft <mike@FreeBSD.org>2002-10-12 16:13:41 +0000
committerMike Barcroft <mike@FreeBSD.org>2002-10-12 16:13:41 +0000
commit54e4e385de33a961e801ceeea8146437e25edd88 (patch)
tree8937b8185655025519cc44865535915faec9b620 /lib/libc/stdio/fopen.c
parent7eeaf6dce8e5124bdaad05334e228d0d555ebbb4 (diff)
Notes
Diffstat (limited to 'lib/libc/stdio/fopen.c')
-rw-r--r--lib/libc/stdio/fopen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdio/fopen.c b/lib/libc/stdio/fopen.c
index 7af0636285c0..b7c84a72006c 100644
--- a/lib/libc/stdio/fopen.c
+++ b/lib/libc/stdio/fopen.c
@@ -52,8 +52,8 @@ __FBSDID("$FreeBSD$");
FILE *
fopen(file, mode)
- const char *file;
- const char *mode;
+ const char * __restrict file;
+ const char * __restrict mode;
{
FILE *fp;
int f;