From: Karl Heuer Date: Fri, 26 May 1995 22:35:10 +0000 (+0000) Subject: (NULL): Use explicit cast. X-Git-Tag: emacs-19.34~3906 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=075f06eca341dbfd2b085684eb5ac5cf0a1affe2;p=emacs.git (NULL): Use explicit cast. --- diff --git a/src/regex.c b/src/regex.c index 5a98c6c21aa..3581b38dbd3 100644 --- a/src/regex.c +++ b/src/regex.c @@ -183,7 +183,7 @@ init_syntax_once () #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',