Changeset 809 in kBuild for trunk/src/ash/jobs.c
- Timestamp:
- Jan 29, 2007 5:54:36 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ash/jobs.c
r626 r809 33 33 */ 34 34 35 #ifdef HAVE_SYS_CDEFS_H 35 36 #include <sys/cdefs.h> 37 #else 38 #define _PATH_DEVNULL "/dev/null" 39 #endif 36 40 #ifndef lint 37 41 #if 0 … … 43 47 44 48 #include <fcntl.h> 49 #ifdef __sun__ 50 #define sys_siglist _sys_siglist 51 #endif 45 52 #include <signal.h> 46 53 #include <errno.h> 47 54 #include <unistd.h> 48 55 #include <stdlib.h> 56 #ifndef __sun__ 49 57 #include <paths.h> 58 #endif 50 59 #include <sys/types.h> 51 60 #include <sys/param.h> 52 #if def BSD61 #if defined(BSD) || defined(__sun__) 53 62 #include <sys/wait.h> 54 63 #include <sys/time.h> … … 688 697 int i; 689 698 const char *err_msg = "No such job: %s"; 690 699 691 700 if (name == NULL) { 692 701 #if JOBS
Note:
See TracChangeset
for help on using the changeset viewer.