blob: 0aed208cc808b2e2dcda7f952178ae7f02a88822 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _NGX_USER_H_INCLUDED_
#define _NGX_USER_H_INCLUDED_
#include <ngx_config.h>
#include <ngx_core.h>
typedef uid_t ngx_uid_t;
typedef gid_t ngx_gid_t;
#endif /* _NGX_USER_H_INCLUDED_ */
|