view src/os/unix/ngx_types.h @ 34:95f1c2a938f3

nginx-0.0.1-2002-12-20-09:54:55 import
author Igor Sysoev <igor@sysoev.ru>
date Fri, 20 Dec 2002 06:54:55 +0000
parents b2e039840718
children a499e0d1f16e
line wrap: on
line source

#ifndef _NGX_TYPES_H_INCLUDED_
#define _NGX_TYPES_H_INCLUDED_


#include <ngx_config.h>


#ifdef SOLARIS

#define  QD_FMT   "%lld"
#define  QX_FMT   "%llx"
#define  OFF_FMT  "%lld"

#else

#define  QD_FMT   "%qd"
#define  QX_FMT   "%qx"
#define  OFF_FMT  "%qd"

#endif


#endif /* _NGX_TYPES_H_INCLUDED_ */