diff options
author | YamaArashi <shadow962@live.com> | 2016-02-17 06:18:37 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-02-17 06:18:37 -0800 |
commit | 9cc5f8edb21ac07bff87def5155ee71dff449e37 (patch) | |
tree | b75b0eb06bf733811e4f54bd28dd6fa93fa8f485 /gcc/cppexp.c | |
parent | 75ff61fd74b379f7278b1042e269ea3a6ee66518 (diff) |
get rid of PTR macros
Diffstat (limited to 'gcc/cppexp.c')
-rwxr-xr-x | gcc/cppexp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cppexp.c b/gcc/cppexp.c index 163211e..1f241da 100755 --- a/gcc/cppexp.c +++ b/gcc/cppexp.c @@ -420,7 +420,7 @@ cpp_lex (pfile, skip_evaluation) || (num_chars == 1 && token_buffer[0] != '\0')) { wchar_t wc; - (void) mbtowc (NULL_PTR, NULL_PTR, 0); + (void) mbtowc (NULL, NULL, 0); if (mbtowc (& wc, token_buffer, num_chars) == num_chars) result = wc; else |