From dec4371492651189eb17050f7c34565dd75713c9 Mon Sep 17 00:00:00 2001 From: Love Hornquist Astrand Date: Wed, 16 Sep 2009 16:30:51 -0700 Subject: [PATCH] use !defined instead of ! --- lib/roken/roken.h.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/roken/roken.h.in b/lib/roken/roken.h.in index b04559890..30151b3b5 100644 --- a/lib/roken/roken.h.in +++ b/lib/roken/roken.h.in @@ -714,7 +714,7 @@ void ROKEN_LIB_FUNCTION setprogname(const char *); const char * ROKEN_LIB_FUNCTION getprogname(void); #endif -#if !defined(HAVE_SETPROGNAME) && !defined(HAVE_GETPROGNAME) && !HAVE_DECL___PROGNAME +#if !defined(HAVE_SETPROGNAME) && !defined(HAVE_GETPROGNAME) && !defined(HAVE_DECL___PROGNAME) extern const char *__progname; #endif