Merge pull request #1442 from yukoba/mincore

Third argument of mincore is unsigned char
This commit is contained in:
Alon Zakai 2013-07-29 16:51:22 -07:00
Родитель 303c4f49e4 be02aa4e10
Коммит bc570895d7
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -155,7 +155,7 @@ int munlock __P((const void *, size_t));
int munmap __P((void *, size_t));
#ifndef _POSIX_SOURCE
int madvise __P((void *, size_t, int));
int mincore __P((const void *, size_t, char *));
int mincore __P((const void *, size_t, unsigned char *));
int minherit __P((void *, size_t, int));
#endif