summaryrefslogtreecommitdiff
path: root/mmap
diff options
context:
space:
mode:
authordgaudet <dgaudet@13f79535-47bb-0310-9956-ffa450edef68>2000-04-14 02:21:28 +0000
committerdgaudet <dgaudet@13f79535-47bb-0310-9956-ffa450edef68>2000-04-14 02:21:28 +0000
commit906d1e70bea3f18e409e2f22036d656b80006801 (patch)
treea84912e57d280e68ae78dce53905ac73fc4ae607 /mmap
parent25750e4962a549eba54a8bbed0837992b2a578be (diff)
downloadlibapr-906d1e70bea3f18e409e2f22036d656b80006801.tar.gz
more namespace cleanup
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59849 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'mmap')
-rw-r--r--mmap/beos/mmap.c2
-rw-r--r--mmap/beos/mmap_h.h2
-rw-r--r--mmap/unix/mmap.c2
-rw-r--r--mmap/unix/mmap_h.h2
4 files changed, 2 insertions, 6 deletions
diff --git a/mmap/beos/mmap.c b/mmap/beos/mmap.c
index 21ea428c8..6d56d39f3 100644
--- a/mmap/beos/mmap.c
+++ b/mmap/beos/mmap.c
@@ -54,7 +54,7 @@
#include "mmap_h.h"
-ap_status_t mmap_cleanup(void *themmap)
+static ap_status_t mmap_cleanup(void *themmap)
{
ap_mmap_t *mm = themmap;
int rv;
diff --git a/mmap/beos/mmap_h.h b/mmap/beos/mmap_h.h
index 4445e0d98..7033c549f 100644
--- a/mmap/beos/mmap_h.h
+++ b/mmap/beos/mmap_h.h
@@ -75,7 +75,5 @@ struct ap_mmap_t {
size_t size;
};
-ap_status_t mmap_cleanup(void *);
-
#endif /* ! FILE_IO_H */
diff --git a/mmap/unix/mmap.c b/mmap/unix/mmap.c
index 0c763a800..c2c48869a 100644
--- a/mmap/unix/mmap.c
+++ b/mmap/unix/mmap.c
@@ -62,7 +62,7 @@
#if HAVE_MMAP
-ap_status_t mmap_cleanup(void *themmap)
+static ap_status_t mmap_cleanup(void *themmap)
{
ap_mmap_t *mm = themmap;
int rv;
diff --git a/mmap/unix/mmap_h.h b/mmap/unix/mmap_h.h
index 6959cb36b..3a03ed08d 100644
--- a/mmap/unix/mmap_h.h
+++ b/mmap/unix/mmap_h.h
@@ -90,7 +90,5 @@ struct ap_mmap_t {
size_t size;
};
-ap_status_t mmap_cleanup(void *);
-
#endif /* ! MMAP_H_H */