From 70b504a538a28806b350b2f30df5263a55ade5cd Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Wed, 25 Apr 2001 23:36:24 +0000 Subject: Be really sneaky and use GNU ld special stuff so that whenever folks use the unsafe gets, they will get a warning from the linker. muahahaha. This method will soon be applied to fork() w/o an mmu etc... -Erik --- libc/stdio/stdio.c | 1 + 1 file changed, 1 insertion(+) (limited to 'libc') diff --git a/libc/stdio/stdio.c b/libc/stdio/stdio.c index 954318d39..a7dd8a3ba 100644 --- a/libc/stdio/stdio.c +++ b/libc/stdio/stdio.c @@ -314,6 +314,7 @@ char *fgets(char *s, int count, FILE *fp) #endif #ifdef L_gets +link_warning (gets, "the `gets' function is dangerous and should not be used.") char *gets(char *str) /* This is an UNSAFE function! */ { /* -- cgit v1.2.3