diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2014-07-09 12:09:04 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2014-07-09 12:09:04 +0000 |
commit | 82b75176069f432ed33ee0949fdcfc7f59120a10 (patch) | |
tree | 9de2483c2004b3f792bc1b9126774862ec19a218 /cgi.c | |
parent | acab50732fb7057448d3539e67c0082267a40193 (diff) | |
download | mandoc-82b75176069f432ed33ee0949fdcfc7f59120a10.tar.gz |
remove obsolete __sun includes
and improve some whitespace and comments
Diffstat (limited to 'cgi.c')
-rw-r--r-- | cgi.c | 11 |
1 files changed, 2 insertions, 9 deletions
@@ -27,13 +27,6 @@ #include <string.h> #include <unistd.h> -#if defined(__sun) -/* for stat() */ -#include <fcntl.h> -#include <sys/types.h> -#include <sys/stat.h> -#endif - #include "mandoc.h" #include "mandoc_aux.h" #include "main.h" @@ -61,7 +54,7 @@ struct query { struct req { struct query q; char **p; /* array of available manroots */ - size_t psz; + size_t psz; /* number of available manroots */ enum page page; }; @@ -129,6 +122,7 @@ html_putchar(char c) break; } } + static void http_printquery(const struct req *req) { @@ -151,7 +145,6 @@ http_printquery(const struct req *req) } } - static void html_printquery(const struct req *req) { |