aboutsummaryrefslogtreecommitdiff
path: root/gmid.h
diff options
context:
space:
mode:
authorOmar Polo <op@omarpolo.com>2021-02-03 14:16:39 +0000
committerOmar Polo <op@omarpolo.com>2021-02-03 14:16:39 +0000
commit9b8f5ed2c0c53467115b3b1d6754642d8e5e4da1 (patch)
tree1a17a27b9637036db4a77ce73453de660735f3f0 /gmid.h
parent9edb82825145b2311c547003b9e7ca286ef7db3a (diff)
revert commit 346f28eeaa205d268d1e63c7ffd86cf041f6d1e6
keep mark_nonblock in utils.c, as otherwise the build for the regress suite will fail (mark_nonblock needs fatal which is in gmid.c, and we can't link gmid.o with the regress suite...)
Diffstat (limited to 'gmid.h')
-rw-r--r--gmid.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gmid.h b/gmid.h
index 5ccf59b..5c107e2 100644
--- a/gmid.h
+++ b/gmid.h
@@ -220,6 +220,7 @@ const char *vhost_lang(struct vhost*, const char*);
const char *vhost_default_mime(struct vhost*, const char*);
const char *vhost_index(struct vhost*, const char*);
int vhost_auto_index(struct vhost*, const char*);
+void mark_nonblock(int);
void loop(struct tls*, int, int);
/* ex.c */
@@ -253,7 +254,6 @@ int puny_decode(const char*, char*, size_t, const char**);
int starts_with(const char*, const char*);
int ends_with(const char*, const char*);
ssize_t filesize(int);
-void mark_nonblock(int);
char *absolutify_path(const char*);
#endif