about summary refs log tree commit diff
path: root/misc/munmap.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc/munmap.c')
-rw-r--r--misc/munmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/munmap.c b/misc/munmap.c
index b3ba789d3b..525c8d7cb9 100644
--- a/misc/munmap.c
+++ b/misc/munmap.c
@@ -23,7 +23,7 @@
    bytes.  Returns 0 if successful, -1 for errors (and sets errno).  */
 
 int
-__munmap (__ptr_t addr, size_t len)
+__munmap (void *addr, size_t len)
 {
   __set_errno (ENOSYS);
   return -1;