Pull from CVS head: Quiet compiler warnings when #if was used in place of
authorphampson <phampson>
Wed, 3 Sep 2003 13:03:14 +0000 (13:03 +0000)
committerphampson <phampson>
Wed, 3 Sep 2003 13:03:14 +0000 (13:03 +0000)
#ifdef and the variable was not defined.

src/include/libradius.h

index 91181c0..d89eb89 100644 (file)
 
 #include "autoconf.h"
 
-#if HAVE_SYS_TYPES_H
+#ifdef HAVE_SYS_TYPES_H
 #include <sys/types.h>
 #endif
 
-#if HAVE_STDINT_H
+#ifdef HAVE_STDINT_H
 #include <stdint.h>
 #endif
 
-#if HAVE_INTTYPES_H
+#ifdef HAVE_INTTYPES_H
 #include <inttypes.h>
 #endif
 
-#if HAVE_ERRNO_H
+#ifdef HAVE_ERRNO_H
 #include <errno.h>
 #endif