| commit | 5f80078c675bc344d12a6a64d97ecafb64de224b | [log] [tgz] |
|---|---|---|
| author | Igor Sysoev <igor@sysoev.ru> | Mon Dec 08 20:48:12 2003 +0000 |
| committer | Igor Sysoev <igor@sysoev.ru> | Mon Dec 08 20:48:12 2003 +0000 |
| tree | e4ff5330121ef71ffe558ccaa9210218802ff537 | |
| parent | 62260f2a158e27e5f6b1689e10dc25ea3c617473 [diff] [blame] |
nginx-0.0.1-2003-12-08-23:48:12 import
diff --git a/src/core/ngx_array.h b/src/core/ngx_array.h index d6443d6..9cef9f3 100644 --- a/src/core/ngx_array.h +++ b/src/core/ngx_array.h
@@ -6,13 +6,13 @@ #include <ngx_core.h> -typedef struct { +struct ngx_array_s { void *elts; int nelts; size_t size; int nalloc; ngx_pool_t *pool; -} ngx_array_t; +}; ngx_array_t *ngx_create_array(ngx_pool_t *p, int n, size_t size);