summaryrefslogtreecommitdiffstats
path: root/innbbsd/externs.h
blob: 2cde1141ae57bc8ff314f00f6274f153e8615250 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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