Changeset 1226 in kBuild for trunk/src/kash
- Timestamp:
- Oct 8, 2007 1:46:07 AM (17 years ago)
- Location:
- trunk/src/kash
- Files:
-
- 1 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kash/eval.c
r1224 r1226 46 46 #ifdef HAVE_SYSCTL_H 47 47 # include <sys/sysctl.h> 48 #endif49 #ifdef _MSC_VER50 # include "getopt.h"51 48 #endif 52 49 -
trunk/src/kash/expand.c
r1222 r1226 42 42 43 43 #include <sys/types.h> 44 #include <sys/time.h>45 44 #include <errno.h> 46 45 #include <stdlib.h> -
trunk/src/kash/jobs.c
r1222 r1226 47 47 48 48 #include "shell.h" 49 #if JOBS 49 #if JOBS && !defined(_MSC_VER) 50 50 # include <termios.h> 51 51 #endif -
trunk/src/kash/shell.h
r1218 r1226 53 53 #define ___shell_h 54 54 55 #include <sys/param.h> 55 #ifndef _MSC_VER 56 # include <sys/param.h> 57 #endif 56 58 57 59 #define JOBS 1 -
trunk/src/kash/var.c
r1222 r1226 43 43 #include <stddef.h> 44 44 #include <stdlib.h> 45 #include <string s.h>45 #include <string.h> 46 46 47 47 #ifdef PC_OS2_LIBPATHS … … 577 577 continue; 578 578 } 579 q = index(p, '\'');579 q = strchr(p, '\''); 580 580 if (!q) { 581 581 out1fmt(psh, "'%s'", p );
Note:
See TracChangeset
for help on using the changeset viewer.