comparison src/os/unix/ngx_solaris_config.h @ 94:8220378432a8

nginx-0.0.1-2003-05-22-19:23:47 import
author Igor Sysoev <igor@sysoev.ru>
date Thu, 22 May 2003 15:23:47 +0000
parents 738fe44c70d5
children 70d2345a903f
comparison
equal deleted inserted replaced
93:738fe44c70d5 94:8220378432a8
2 #define _NGX_SOLARIS_CONFIG_H_INCLUDED_ 2 #define _NGX_SOLARIS_CONFIG_H_INCLUDED_
3 3
4 4
5 #define SOLARIS 1 5 #define SOLARIS 1
6 6
7 #define _REENTRANT
7 #define _FILE_OFFSET_BITS 64 /* must be before sys/types.h */ 8 #define _FILE_OFFSET_BITS 64 /* must be before sys/types.h */
9
8 10
9 #include <unistd.h> 11 #include <unistd.h>
10 #include <stddef.h> /* offsetof */ 12 #include <stddef.h> /* offsetof */
11 #include <stdlib.h> 13 #include <stdlib.h>
12 #include <stdio.h> 14 #include <stdio.h>
13 #include <stdarg.h>
14 #include <fcntl.h> 15 #include <fcntl.h>
15 #include <time.h>
16 #include <signal.h> 16 #include <signal.h>
17 #include <string.h> 17 #include <strings.h>
18 #include <strings.h> /* bzero() */ 18
19 #include <sys/types.h> 19 #include <sys/types.h>
20 #include <sys/filio.h> /* FIONBIO */ 20 #include <sys/filio.h> /* FIONBIO */
21 #include <sys/stropts.h> /* INFTIM */ 21 #include <sys/stropts.h> /* INFTIM */
22 #include <sys/mman.h>
23 #include <sys/wait.h>
24 #include <sys/socket.h> 22 #include <sys/socket.h>
25 #include <sys/uio.h>
26 #include <sys/resource.h>
27 #include <netinet/in.h> 23 #include <netinet/in.h>
28 #include <arpa/inet.h> 24 #include <arpa/inet.h>
29 #include <netdb.h>
30 25
31 26
32 typedef uint32_t u_int32_t; 27 typedef uint32_t u_int32_t;
33 28
34 29