wrong prototype

This commit is contained in:
leitner 2002-11-12 20:15:11 +00:00
parent 8efd8293a0
commit 98c7cda40a

2
mmap.h
View File

@ -8,7 +8,7 @@ extern char* mmap_read(const char *filename,unsigned long* filesize);
/* open file for writing, mmap whole file privately (copy on write),
* close file, write length of map in filesize and return pointer to
* map. */
extern char* mmap_write(const char *filename,unsigned long* filesize);
extern char* mmap_private(const char *filename,unsigned long* filesize);
/* open file for writing, mmap whole file shared, close file, write
* length of map in filesize and return pointer to map. */