diff options
Diffstat (limited to 'src/os/win32/ngx_alloc.h')
-rw-r--r-- | src/os/win32/ngx_alloc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/os/win32/ngx_alloc.h b/src/os/win32/ngx_alloc.h index 9d8d83750..805a41b3c 100644 --- a/src/os/win32/ngx_alloc.h +++ b/src/os/win32/ngx_alloc.h @@ -18,7 +18,8 @@ void *ngx_calloc(size_t size, ngx_log_t *log); #define ngx_free free #define ngx_memalign(alignment, size, log) ngx_alloc(size, log) -extern int ngx_pagesize; +extern ngx_uint_t ngx_pagesize; +extern ngx_uint_t ngx_pagesize_shift; extern ngx_uint_t ngx_cacheline_size; |