summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/gets.c
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2013-04-23 14:36:44 +0000
committerEd Maste <emaste@FreeBSD.org>2013-04-23 14:36:44 +0000
commit5a6307cf42c5b4965435b3b7af74a37fd4dc17b9 (patch)
treeeee3d4211d69ff36f950fb608985ae69d9c4c4e1 /lib/libc/stdio/gets.c
parent5628dd089340472da80d5e3cce2108e155592ecd (diff)
Notes
Diffstat (limited to 'lib/libc/stdio/gets.c')
-rw-r--r--lib/libc/stdio/gets.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libc/stdio/gets.c b/lib/libc/stdio/gets.c
index 51773180ede9..c7c1c2fa38c8 100644
--- a/lib/libc/stdio/gets.c
+++ b/lib/libc/stdio/gets.c
@@ -47,8 +47,7 @@ __FBSDID("$FreeBSD$");
__warn_references(gets, "warning: this program uses gets(), which is unsafe.");
char *
-gets(buf)
- char *buf;
+gets(char *buf)
{
int c;
char *s;