aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/cgi.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2014-07-09 12:09:04 +0000
committerIngo Schwarze <schwarze@openbsd.org>2014-07-09 12:09:04 +0000
commitb0821ed828b2b169c9e52eadf04251d70f911d71 (patch)
tree3dfa40e4562a8d908a98c245450a353418128d7b /cgi.c
parented59bcd1564904f6ab57883e191f819b724c3be3 (diff)
downloadmandoc-b0821ed828b2b169c9e52eadf04251d70f911d71.tar.gz
mandoc-b0821ed828b2b169c9e52eadf04251d70f911d71.tar.zst
mandoc-b0821ed828b2b169c9e52eadf04251d70f911d71.zip
remove obsolete __sun includes
and improve some whitespace and comments
Diffstat (limited to 'cgi.c')
-rw-r--r--cgi.c13
1 files changed, 3 insertions, 10 deletions
diff --git a/cgi.c b/cgi.c
index 6c82cd93..8609b878 100644
--- a/cgi.c
+++ b/cgi.c
@@ -1,4 +1,4 @@
-/* $Id: cgi.c,v 1.56 2014/07/09 11:34:46 schwarze Exp $ */
+/* $Id: cgi.c,v 1.57 2014/07/09 12:09:04 schwarze Exp $ */
/*
* Copyright (c) 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2014 Ingo Schwarze <schwarze@usta.de>
@@ -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)
{