map mmap_read return a const char*

This commit is contained in:
leitner 2014-04-02 13:59:03 +00:00
parent c548cce5a1
commit dd436c5bf8
2 changed files with 2 additions and 2 deletions

2
mmap.h
View File

@ -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

View File

@ -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;