From 7883df5ea28a0934e59540ca93a33a726bb9aa07 Mon Sep 17 00:00:00 2001 From: "Jordan K. Hubbard" Date: Sat, 24 Sep 1994 03:57:13 +0000 Subject: Mshell port from Jean-Marc Zucconi (jmz@thud.cdrom.com). Jean-Marc is now our leading ports-supplier! Let's all give him a big THANK YOU! :) Submitted by: jmz --- misc/mshell/files/patch-ae | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 misc/mshell/files/patch-ae (limited to 'misc/mshell/files/patch-ae') diff --git a/misc/mshell/files/patch-ae b/misc/mshell/files/patch-ae new file mode 100644 index 000000000000..928f9c25b1d7 --- /dev/null +++ b/misc/mshell/files/patch-ae @@ -0,0 +1,22 @@ +*** string.c.orig Fri Sep 23 18:34:06 1994 +--- string.c Fri Sep 23 18:50:39 1994 +*************** +*** 4,9 **** +--- 4,20 ---- + #define strchr index + #endif + ++ char * ++ gets (char *s) ++ { ++ char *x = fgets (s, WORDLEN, stdin); ++ if (x) { ++ char *p = strchr (x, '\n'); ++ if (p) ++ *p = 0; ++ } ++ return x; ++ } + + /* function to find the position of sub_string in main_string + * ---------------------------------------------------------- */ -- cgit v1.2.3