mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 10:05:29 +00:00
16 lines
258 B
C
16 lines
258 B
C
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include <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;
|
|
}
|