Commit 6f84c9bd by Richard Henderson Committed by Richard Henderson

* cppiles.c (purge_cache): Use PTR not caddr_t.

From-SVN: r36458
parent 4faefccb
2000-09-16 Richard Henderson <rth@cygnus.com>
* cppiles.c (purge_cache): Use PTR not caddr_t.
2000-09-16 Hans-Peter Nilsson <hp@axis.com>
* gcc.c: In description for %{<S}, say the option removed is -S.
......
......@@ -364,7 +364,7 @@ purge_cache (inc)
if (inc->buffer)
{
if (inc->mapped)
munmap ((caddr_t) inc->buffer, inc->st.st_size);
munmap ((PTR) inc->buffer, inc->st.st_size);
else
free ((PTR) inc->buffer);
inc->buffer = NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment