summaryrefslogtreecommitdiffstats
path: root/innbbsd/externs.h
diff options
context:
space:
mode:
Diffstat (limited to 'innbbsd/externs.h')
-rw-r--r--innbbsd/externs.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/innbbsd/externs.h b/innbbsd/externs.h
new file mode 100644
index 00000000..2cde1141
--- /dev/null
+++ b/innbbsd/externs.h
@@ -0,0 +1,16 @@
+#ifndef EXTERNS_H
+#define EXTERNS_H
+
+# ifndef ARG
+# ifdef __STDC__
+# define ARG(x) x
+# else
+# define ARG(x) ()
+# endif
+# endif
+
+char *fileglue ARG((char *, ...));
+char *ascii_date ARG(());
+char **split ARG((char *, char *));
+
+#endif