changeset 447:5607a4b33402

(NULL): Use explicit cast.
author Karl Heuer <kwzh@gnu.org>
date Fri, 26 May 1995 22:35:10 +0000
parents 8461c3b8595a
children 5bc485858505
files regex.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/regex.c
+++ b/regex.c
@@ -183,7 +183,7 @@
 #define ISXDIGIT(c) (ISASCII (c) && isxdigit (c))
 
 #ifndef NULL
-#define NULL 0
+#define NULL (void *)0
 #endif
 
 /* We remove any previous definition of `SIGN_EXTEND_CHAR',