summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2013-04-19 23:04:17 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2013-04-20 08:58:24 -0700
commit0d8f02da4e3e9d65608b26222d76ce75567956d0 (patch)
treeb92ecd60d5e7504b42abd9a63a483f45778aef5c
parentda80716836bd7a049e74503c660d853e512e6239 (diff)
Remove unused NULLSTR macro
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--man.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/man.h b/man.h
index d17715c..16a2a56 100644
--- a/man.h
+++ b/man.h
@@ -69,9 +69,6 @@ from the X Consortium.
#include "defs.h"
-/* Turn a NULL pointer string into an empty string */
-#define NULLSTR(x) (((x)!=NULL)?(x):(""))
-
#define Error(x) { printf x ; exit(EXIT_FAILURE); }
#define Assertion(expr, msg) { if (!(expr)) { Error msg } }
#ifdef DEBUG