summaryrefslogtreecommitdiffstats
path: root/otherlibs/unix/unix.h
blob: e63b04a7fe6dde91f32e6b712bfa882d45585849 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#define Nothing ((value) 0)

#ifndef NULL
#ifdef ANSI
#define NULL ((void *) 0)
#else
#define NULL ((char *) 0)
#endif
#endif

#ifdef ANSI
extern void unix_error(int errcode, char * cmdname, value arg);
extern void uerror(char * cmdname, value arg);
#else
void unix_error();
void uerror();
#endif