summaryrefslogtreecommitdiffstats
path: root/src/platform/platform.h
diff options
context:
space:
mode:
authorMarkus Mittendrein <git@maxmitti.tk>2019-03-18 19:45:34 +0100
committerMarkus Mittendrein <git@maxmitti.tk>2019-03-18 19:45:34 +0100
commitec6f8c4fe162500645109eb24856051c97bfb2fe (patch)
tree95cc40de4f88c3d1e1ee4dcac1b093df984126ec /src/platform/platform.h
parent984c5b553954ebed29d01b29083323e03f78ac9d (diff)
downloadcc4group-ec6f8c4fe162500645109eb24856051c97bfb2fe.tar.gz
cc4group-ec6f8c4fe162500645109eb24856051c97bfb2fe.zip
Remove the extra argument from cc4group_mmap and cc4group_munmap as its actually not needed
Diffstat (limited to 'src/platform/platform.h')
-rw-r--r--src/platform/platform.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/platform/platform.h b/src/platform/platform.h
index 8e52d51..688d851 100644
--- a/src/platform/platform.h
+++ b/src/platform/platform.h
@@ -31,5 +31,5 @@
#define SET_BINARY(fd)
#endif
-void *cc4group_mmap(void *start, size_t length, int prot, int flags, int fd, off_t offset, void** extra);
-int cc4group_munmap(void *addr, size_t length, void* extra); \ No newline at end of file
+void *cc4group_mmap(void *start, size_t length, int prot, int flags, int fd, off_t offset);
+int cc4group_munmap(void *addr, size_t length); \ No newline at end of file