summaryrefslogtreecommitdiff
path: root/snac.h
diff options
context:
space:
mode:
authordefault <nobody@localhost>2022-10-26 06:43:47 +0200
committerdefault <nobody@localhost>2022-10-26 06:43:47 +0200
commit3acc70b2704f5244fe4ad96b65a3286c42d47f79 (patch)
treed81609d75ef4e9088acd2827d28b52f02d574ea6 /snac.h
parent22b89875aa7c5e7da27a43d31dc294049e5f79e5 (diff)
Fixed a nasty macro expansion bug.
Diffstat (limited to 'snac.h')
-rw-r--r--snac.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/snac.h b/snac.h
index 260feae..779e298 100644
--- a/snac.h
+++ b/snac.h
@@ -14,10 +14,9 @@ extern int dbglevel;
extern const char *susie;
-#define valid_status(status) ((status) >= 200 && (status) <= 299)
-
#define L(s) (s)
+int valid_status(int status);
d_char *tid(int offset);
double ftime(void);