summaryrefslogtreecommitdiff
path: root/gcc/c-lex.c
diff options
context:
space:
mode:
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2001-05-02 14:31:45 +0000
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2001-05-02 14:31:45 +0000
commit4679ade3d07c159e201a8c6af4811e110d7be90e (patch)
tree7242626023390eab7333b3367b8417b18f8e5803 /gcc/c-lex.c
parent341d41ef1647b940947aa8d0753605522aa79371 (diff)
downloadgcc-4679ade3d07c159e201a8c6af4811e110d7be90e.tar.gz
* c-lex.c: NULL_PTR -> NULL.
* cse.c: Likewise. * emit-rtl.c: Likewise. * gcse.c: Likewise. * genpeep.c: Likewise. * jump.c: Likewise. * mips-tdump.c: Likewise. * reload1.c: Likewise. * rtlanal.c: Likewise. * stmt.c: Likewise. * stor-layout.c: Likewise. * toplev.c: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41761 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-lex.c')
-rw-r--r--gcc/c-lex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-lex.c b/gcc/c-lex.c
index 6f607692f4f..85ed543eaa4 100644
--- a/gcc/c-lex.c
+++ b/gcc/c-lex.c
@@ -1524,7 +1524,7 @@ lex_string (str, len, wide)
#ifdef MULTIBYTE_CHARS
/* Reset multibyte conversion state. */
- (void) local_mbtowc (NULL_PTR, NULL_PTR, 0);
+ (void) local_mbtowc (NULL, NULL, 0);
#endif
while (p < limit)
@@ -1624,7 +1624,7 @@ lex_charconst (str, len, wide)
#ifdef MULTIBYTE_CHARS
int longest_char = local_mb_cur_max ();
- (void) local_mbtowc (NULL_PTR, NULL_PTR, 0);
+ (void) local_mbtowc (NULL, NULL, 0);
#endif
max_chars = TYPE_PRECISION (integer_type_node) / width;