comparison src/os/unix/ngx_types.h @ 33:b2e039840718

nginx-0.0.1-2002-12-19-20:49:51 import
author Igor Sysoev <igor@sysoev.ru>
date Thu, 19 Dec 2002 17:49:51 +0000
parents c5f071d376e5
children a499e0d1f16e
comparison
equal deleted inserted replaced
32:d45effe5854c 33:b2e039840718
3 3
4 4
5 #include <ngx_config.h> 5 #include <ngx_config.h>
6 6
7 7
8 #define QD_FMT "%qd" 8 #ifdef SOLARIS
9 #define QX_FMT "%qx" 9
10 #define QD_FMT "%lld"
11 #define QX_FMT "%llx"
12 #define OFF_FMT "%lld"
13
14 #else
15
16 #define QD_FMT "%qd"
17 #define QX_FMT "%qx"
18 #define OFF_FMT "%qd"
19
20 #endif
10 21
11 22
12 #endif /* _NGX_TYPES_H_INCLUDED_ */ 23 #endif /* _NGX_TYPES_H_INCLUDED_ */