summaryrefslogtreecommitdiff
path: root/libio/iogets.c
diff options
context:
space:
mode:
Diffstat (limited to 'libio/iogets.c')
-rw-r--r--libio/iogets.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/libio/iogets.c b/libio/iogets.c
index b5611f29da..0e87504107 100644
--- a/libio/iogets.c
+++ b/libio/iogets.c
@@ -33,8 +33,8 @@ _IO_gets (buf)
int ch;
char *retval;
- __libc_cleanup_region_start ((void (*) __P ((void *))) _IO_funlockfile,
- _IO_stdin);
+ _IO_cleanup_region_start ((void (*) __P ((void *))) _IO_funlockfile,
+ _IO_stdin);
_IO_flockfile (_IO_stdin);
ch = _IO_getc_unlocked (_IO_stdin);
if (ch == EOF)
@@ -57,10 +57,12 @@ _IO_gets (buf)
buf[count] = 0;
retval = buf;
unlock_return:
- __libc_cleanup_region_end (1);
+ _IO_cleanup_region_end (1);
return retval;
}
weak_alias (_IO_gets, gets)
+#ifdef _LIBC
link_warning (gets, "the `gets' function is dangerous and should not be used.")
+#endif