1
0
mirror of https://github.com/ioacademy-jikim/debugging synced 2025-06-08 00:16:11 +00:00
2015-12-13 22:34:58 +09:00

16 lines
264 B
C

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include "tests/sys_mman.h"
int main()
{
int fd;
mkdir("dir", 0777);
fd = open("dir", O_RDONLY);
mmap(NULL, 4711, PROT_READ, MAP_PRIVATE, fd, 0);
return 0;
}