comparison dmd2/root/response.c @ 1577:e4f7b5d9c68a

DMD 2.032 Merge.
author Robert Clipsham <robert@octarineparrot.com>
date Tue, 08 Sep 2009 10:07:56 +0100
parents 638d16625da2
children
comparison
equal deleted inserted replaced
1576:4551475bc6b6 1577:e4f7b5d9c68a
12 #include <stdio.h> 12 #include <stdio.h>
13 #include <fcntl.h> 13 #include <fcntl.h>
14 #include <stdlib.h> 14 #include <stdlib.h>
15 #include <string.h> 15 #include <string.h>
16 16
17 #if !__DMC__
18 #include <sys/stat.h>
19 #endif
20
21 #if _WIN32 17 #if _WIN32
22 #include <tchar.h> 18 #include <tchar.h>
23 #include <io.h> 19 #include <io.h>
24 #endif 20 #endif
25 21
26 #if linux || __APPLE__ || __FreeBSD__ || __sun&&__SVR4 22 #if linux || __APPLE__ || __FreeBSD__ || __sun&&__SVR4
23 #include <sys/stat.h>
27 #include <sys/types.h> 24 #include <sys/types.h>
28 #include <fcntl.h> 25 #include <fcntl.h>
29 #include <errno.h> 26 #include <errno.h>
30 #include <unistd.h> 27 #include <unistd.h>
31 #include <utime.h> 28 #include <utime.h>