diff options
author | Ruslan Ermilov <ru@nginx.com> | 2012-07-24 15:09:54 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@nginx.com> | 2012-07-24 15:09:54 +0000 |
commit | 1efcca36cc97faa42cfc48128b25c9e1ed748bbd (patch) | |
tree | aa514d2c62978205f2d4216cd51aab049c11d700 /src/http/ngx_http_parse_time.c | |
parent | 7e72000482b439da9536907a67ccc34cdbb2afef (diff) | |
download | nginx-1efcca36cc97faa42cfc48128b25c9e1ed748bbd.tar.gz nginx-1efcca36cc97faa42cfc48128b25c9e1ed748bbd.zip |
Fixed compilation with -Wmissing-prototypes.
Diffstat (limited to 'src/http/ngx_http_parse_time.c')
-rw-r--r-- | src/http/ngx_http_parse_time.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/http/ngx_http_parse_time.c b/src/http/ngx_http_parse_time.c index 3801df2fd..985af3172 100644 --- a/src/http/ngx_http_parse_time.c +++ b/src/http/ngx_http_parse_time.c @@ -7,6 +7,7 @@ #include <ngx_config.h> #include <ngx_core.h> +#include <ngx_http.h> static ngx_uint_t mday[] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; |