Changeset 809 for trunk/src/gmake/kmkbuiltin/install.c
- Timestamp:
- Jan 29, 2007, 6:54:36 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gmake/kmkbuiltin/install.c
r758 r809 48 48 49 49 #ifndef _MSC_VER 50 # include <sys/param.h>51 # ifdef USE_MMAP52 # include <sys/mman.h>53 # endif54 # include <sys/mount.h>55 # include <sys/wait.h>56 # include <sys/time.h>57 #endif 50 # include <sys/param.h> 51 # ifdef USE_MMAP 52 # include <sys/mman.h> 53 # endif 54 # include <sys/mount.h> 55 # include <sys/wait.h> 56 # include <sys/time.h> 57 #endif /* !_MSC_VER */ 58 58 #include <sys/stat.h> 59 59 … … 62 62 #include <errno.h> 63 63 #include <fcntl.h> 64 #ifndef _MSC_VER65 64 #include <grp.h> 66 65 #include <paths.h> 67 66 #include <pwd.h> 68 #endif69 67 #include <stdio.h> 70 68 #include <stdlib.h> 71 69 #include <string.h> 72 #ifndef _MSC_VER73 70 #include <sysexits.h> 74 71 #include <unistd.h> 75 #else76 #include "mscfakes.h"77 #endif78 72 #if defined(__EMX__) || defined(_MSC_VER) 79 73 # include <process.h> 74 #endif 75 76 #ifdef __sun__ 77 # include "solfakes.h" 78 #endif 79 #ifdef _MSC_VER 80 # include "mscfakes.h" 80 81 #endif 81 82
Note:
See TracChangeset
for help on using the changeset viewer.