diff options
author | Roland McGrath <roland@redhat.com> | 1996-07-14 19:59:13 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1996-07-14 19:59:13 +0000 |
commit | cf2db2cf3c61ec5fa1aa2343322c234f57efd713 (patch) | |
tree | 68b0e77c27bed9a8ca4bccd139e4119fd3d5672f /job.c | |
parent | f0cea2086473b22da41127cf8111b97bc1f0ed89 (diff) | |
download | gunmake-cf2db2cf3c61ec5fa1aa2343322c234f57efd713.tar.gz |
Sun Jul 14 12:59:27 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* job.c (construct_command_argv_internal): Fix up #else, #endifs.
Diffstat (limited to 'job.c')
-rw-r--r-- | job.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1643,7 +1643,7 @@ construct_command_argv_internal (line, restp, shell, ifs) "mkdir", "path", "pause", "prompt", "rem", "ren", "rename", "set", "shift", "time", "type", "ver", "verify", "vol", ":", 0 }; -#endif +#else #ifdef _AMIGA static char sh_chars[] = "#;\"|<>()?*$`"; static char *sh_cmds[] = { "cd", "eval", "if", "delete", "echo", "copy", @@ -1676,7 +1676,8 @@ construct_command_argv_internal (line, restp, shell, ifs) "export", "read", "readonly", "shift", "times", "trap", "switch", 0 }; #endif /* WIN32 */ -#endif +#endif /* Amiga */ +#endif /* MSDOS */ register int i; register char *p; register char *ap; |