summaryrefslogtreecommitdiffstats
path: root/gnu
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1995-12-01 08:19:12 +0000
committerjkh <jkh@FreeBSD.org>1995-12-01 08:19:12 +0000
commit65334cb4cf7a51b0e20b2812e9d20b2dd88f42c5 (patch)
tree23678b8d398edbb4bb06c7d93aef6a8be7d7eb85 /gnu
parenteb9ddde393712fc3cfb8fc9c11001b0b5c6cadd9 (diff)
downloadFreeBSD-src-65334cb4cf7a51b0e20b2812e9d20b2dd88f42c5.zip
FreeBSD-src-65334cb4cf7a51b0e20b2812e9d20b2dd88f42c5.tar.gz
gets() -> fgets()
Diffstat (limited to 'gnu')
-rw-r--r--gnu/lib/libreadline/history.c2
-rw-r--r--gnu/lib/libreadline/tilde.c2
-rw-r--r--gnu/usr.bin/as/hash.c8
3 files changed, 6 insertions, 6 deletions
diff --git a/gnu/lib/libreadline/history.c b/gnu/lib/libreadline/history.c
index a0a2560..7c23143 100644
--- a/gnu/lib/libreadline/history.c
+++ b/gnu/lib/libreadline/history.c
@@ -2149,7 +2149,7 @@ main ()
while (!done)
{
fprintf (stdout, "history%% ");
- t = gets (line);
+ t = fgets (line, 1024, stdin);
if (!t)
strcpy (line, "quit");
diff --git a/gnu/lib/libreadline/tilde.c b/gnu/lib/libreadline/tilde.c
index a269351..bfdc80e 100644
--- a/gnu/lib/libreadline/tilde.c
+++ b/gnu/lib/libreadline/tilde.c
@@ -316,7 +316,7 @@ main (argc, argv)
printf ("~expand: ");
fflush (stdout);
- if (!gets (line))
+ if (!fgets(line, 512, stdin))
strcpy (line, "done");
if ((strcmp (line, "done") == 0) ||
diff --git a/gnu/usr.bin/as/hash.c b/gnu/usr.bin/as/hash.c
index b9cc1bc..70068ea 100644
--- a/gnu/usr.bin/as/hash.c
+++ b/gnu/usr.bin/as/hash.c
@@ -123,7 +123,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: hash.c,v 1.2 1993/11/03 00:51:44 paul Exp $";
+static char rcsid[] = "$Id: hash.c,v 1.3 1995/05/30 04:46:18 rgrimes Exp $";
#endif
#include <stdio.h>
@@ -837,7 +837,7 @@ main()
for (;;)
{
printf("hash_test command: ");
- gets(answer);
+ fgets(answer, 100, stdin);
command = answer[0];
if (isupper(command)) command = tolower(command); /* ecch! */
switch (command)
@@ -929,7 +929,7 @@ char * description;
char * malloc();
printf(" %s : ",description);
- gets(answer);
+ fgets(answer, 100, stdin);
/* will one day clean up answer here */
retval = malloc(strlen(answer)+1);
if (!retval)
@@ -967,7 +967,7 @@ whattable() /* determine number: what hash table to use */
for (;;)
{
printf(" what hash table (%d:%d) ? ",0,TABLES-1);
- gets(answer);
+ fgets(answer, 100, stdin);
sscanf(answer,"%d",&number);
if (number >= 0 && number<TABLES)
{
OpenPOWER on IntegriCloud