diff options
author | rws <empty> | 1992-04-26 16:26:57 +0000 |
---|---|---|
committer | rws <empty> | 1992-04-26 16:26:57 +0000 |
commit | 7950c150b84e8f6620902bf9a5442ed04df0598a (patch) | |
tree | 6c6386db2985c6f44581f05c525df563b78ea84f /xc/lib/font/fc/fserve.c | |
parent | 9138659da2591223bbe1f5ec5ee52ba266a2e292 (diff) |
define NULL if not defined
Diffstat (limited to 'xc/lib/font/fc/fserve.c')
-rw-r--r-- | xc/lib/font/fc/fserve.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/xc/lib/font/fc/fserve.c b/xc/lib/font/fc/fserve.c index 9884562e2..6b73c74f9 100644 --- a/xc/lib/font/fc/fserve.c +++ b/xc/lib/font/fc/fserve.c @@ -1,4 +1,4 @@ -/* $XConsortium: fserve.c,v 1.18 92/03/23 17:02:04 keith Exp $ */ +/* $XConsortium: fserve.c,v 1.19 92/04/13 14:38:52 gildea Exp $ */ /* * * Copyright 1990 Network Computing Devices @@ -43,6 +43,10 @@ #include <ncd/nvram.h> #endif +#ifndef NULL +#define NULL 0 +#endif + #ifndef MIN #define MIN(a,b) ((a)<(b)?(a):(b)) #endif |