diff options
Diffstat (limited to 'gcc/cppfiles.c')
-rw-r--r-- | gcc/cppfiles.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/cppfiles.c b/gcc/cppfiles.c index c1e6bfc..38780ad 100644 --- a/gcc/cppfiles.c +++ b/gcc/cppfiles.c @@ -375,7 +375,7 @@ read_include_file (pfile, inc) struct include_file *inc; { ssize_t size, offset, count; - U_CHAR *buf; + uchar *buf; #if MMAP_THRESHOLD static int pagesize = -1; #endif @@ -404,15 +404,15 @@ read_include_file (pfile, inc) if (SHOULD_MMAP (size, pagesize)) { - buf = (U_CHAR *) mmap (0, size, PROT_READ, MAP_PRIVATE, inc->fd, 0); - if (buf == (U_CHAR *)-1) + buf = (uchar *) mmap (0, size, PROT_READ, MAP_PRIVATE, inc->fd, 0); + if (buf == (uchar *)-1) goto perror_fail; inc->mapped = 1; } else #endif { - buf = (U_CHAR *) xmalloc (size + 1); + buf = (uchar *) xmalloc (size + 1); offset = 0; while (offset < size) { @@ -447,7 +447,7 @@ read_include_file (pfile, inc) bigger than the majority of C source files. */ size = 8 * 1024; - buf = (U_CHAR *) xmalloc (size + 1); + buf = (uchar *) xmalloc (size + 1); offset = 0; while ((count = read (inc->fd, buf + offset, size - offset)) > 0) { |