diff --git a/src/code/exports.lisp b/src/code/exports.lisp
index 9854535c3af3f8581edac0528ff77ac5f7542ed5..c584eb043e404e7078e84f44b4b9be26c8781da0 100644
--- a/src/code/exports.lisp
+++ b/src/code/exports.lisp
@@ -284,7 +284,9 @@
 	   "FD-CLR"
 
 	   ;; Simple streams
+	   "PROT_READ"
 	   "UNIX-MMAP"
+	   "UNIX-MUNMAP"
 	   "UNIX-MSYNC"
 
 	   ;; Motif
@@ -313,10 +315,6 @@
 	   ;; run-program.lisp
 	   "SGTTYB"
 
-	   ;; Simple streams
-	   "PROT_READ"
-	   "UNIX-MUNMAP"
-
 	   ;; Other symbols from structures, etc.
 	   "C-CC"
 	   "C-CFLAG"
@@ -672,10 +670,6 @@
 	   ;; run-program.lisp
 	   "SGTTYB"
 
-	   ;; Simple streams
-	   "PROT_READ"
-	   "UNIX-MUNMAP"
-
 	   ;; Other symbols
 	   "BLKCNT-T"
 	   "C-CC"
diff --git a/src/code/unix-glibc2.lisp b/src/code/unix-glibc2.lisp
index 6f6a0955cf8e5a8dea362da040835bd4dfb6ec49..b9d4ce847059e5d05f8a6be1f7f14b915de7711d 100644
--- a/src/code/unix-glibc2.lisp
+++ b/src/code/unix-glibc2.lisp
@@ -1036,6 +1036,11 @@
 	(values nil (unix-errno))
 	(values result 0))))
 
+(defun unix-munmap (addr length)
+  (declare (type system-area-pointer addr)
+	   (type (unsigned-byte 32) length))
+  (syscall ("munmap" system-area-pointer size-t) t addr length))
+
 (defun unix-msync (addr length flags)
   (declare (type system-area-pointer addr)
 	   (type (unsigned-byte 32) length)