map mmap_read return a const char*
This commit is contained in:
parent
c548cce5a1
commit
dd436c5bf8
2
mmap.h
2
mmap.h
@ -10,7 +10,7 @@ extern "C" {
|
||||
|
||||
/* open file for reading, mmap whole file, close file, write length of
|
||||
* map in filesize and return pointer to map. */
|
||||
char* mmap_read(const char *filename,size_t* filesize);
|
||||
const char* mmap_read(const char *filename,size_t* filesize);
|
||||
|
||||
/* open file for writing, mmap whole file privately (copy on write),
|
||||
* close file, write length of map in filesize and return pointer to
|
||||
|
@ -8,7 +8,7 @@
|
||||
#include "open.h"
|
||||
#include "mmap.h"
|
||||
|
||||
extern char* mmap_read(const char* filename,size_t * filesize) {
|
||||
extern const char* mmap_read(const char* filename,size_t * filesize) {
|
||||
#ifdef __MINGW32__
|
||||
HANDLE fd,m;
|
||||
char* map;
|
||||
|
Loading…
x
Reference in New Issue
Block a user