3 - avoid conflict with POSIX getline
5 --- fsh.c~ 1998-12-03 21:15:47.000000000 +0000
7 @@ -838,7 +838,7 @@ do_help(int argc, char **argv)
11 -getline(char *prompt, char *input, int len)
12 +get_line(char *prompt, char *input, int len)
14 printf("%s", prompt); fflush(stdout);
16 @@ -854,7 +854,7 @@ do_fsh(void)
17 char input[512], **argv;
20 - while(getline(prompt, input, sizeof(input)) != NULL) {
21 + while(get_line(prompt, input, sizeof(input)) != NULL) {
23 argv = build_argv(input, &argc);
24 if (argv == NULL || argc == 0) {