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/os/unix/ngx_solaris_sendfilev_chain.c | |
parent | 7e72000482b439da9536907a67ccc34cdbb2afef (diff) | |
download | nginx-1efcca36cc97faa42cfc48128b25c9e1ed748bbd.tar.gz nginx-1efcca36cc97faa42cfc48128b25c9e1ed748bbd.zip |
Fixed compilation with -Wmissing-prototypes.
Diffstat (limited to 'src/os/unix/ngx_solaris_sendfilev_chain.c')
-rw-r--r-- | src/os/unix/ngx_solaris_sendfilev_chain.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/os/unix/ngx_solaris_sendfilev_chain.c b/src/os/unix/ngx_solaris_sendfilev_chain.c index f800c15f5..520eaaab4 100644 --- a/src/os/unix/ngx_solaris_sendfilev_chain.c +++ b/src/os/unix/ngx_solaris_sendfilev_chain.c @@ -29,6 +29,9 @@ static ssize_t sendfilev(int fd, const struct sendfilevec *vec, return -1; } +ngx_chain_t *ngx_solaris_sendfilev_chain(ngx_connection_t *c, ngx_chain_t *in, + off_t limit); + #endif |