comparison remap.c @ 416:4e34a2fce645 src

Do not use non-standard sys/fcntl.h include, use just fcntl.h This also matches the already existing include in vm/vm.c.
author reimar
date Sat, 11 Jun 2011 15:42:20 +0000
parents 9c5aef10d165
children 00c5edf5de12
comparison
equal deleted inserted replaced
415:47c4e70d43ae 416:4e34a2fce645
24 #include <string.h> 24 #include <string.h>
25 #include <stdio.h> 25 #include <stdio.h>
26 26
27 #ifndef _MSC_VER 27 #ifndef _MSC_VER
28 #include <sys/param.h> 28 #include <sys/param.h>
29 #include <sys/fcntl.h> 29 #include <fcntl.h>
30 #else 30 #else
31 #ifndef MAXPATHLEN 31 #ifndef MAXPATHLEN
32 #define MAXPATHLEN 255 32 #define MAXPATHLEN 255
33 #endif 33 #endif
34 #endif /* _MSC_VER */ 34 #endif /* _MSC_VER */