diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2001-05-02 14:31:45 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2001-05-02 14:31:45 +0000 |
commit | 9714cf4399fc4833c9055d4a0e5c5cc504226c44 (patch) | |
tree | 7242626023390eab7333b3367b8417b18f8e5803 /gcc/c-lex.c | |
parent | 46188dcad01ec9cd70c6670b3178553c51e6455a (diff) | |
download | gcc-9714cf4399fc4833c9055d4a0e5c5cc504226c44.zip gcc-9714cf4399fc4833c9055d4a0e5c5cc504226c44.tar.gz gcc-9714cf4399fc4833c9055d4a0e5c5cc504226c44.tar.bz2 |
c-lex.c: NULL_PTR -> NULL.
* 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.
From-SVN: r41761
Diffstat (limited to 'gcc/c-lex.c')
-rw-r--r-- | gcc/c-lex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-lex.c b/gcc/c-lex.c index 6f60769..85ed543 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; |