summaryrefslogtreecommitdiff
path: root/misc/mshell/files/patch-ae
diff options
context:
space:
mode:
Diffstat (limited to 'misc/mshell/files/patch-ae')
-rw-r--r--misc/mshell/files/patch-ae22
1 files changed, 22 insertions, 0 deletions
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
+ * ---------------------------------------------------------- */