1 2 3 4 5 6 7 8 9
#include <sys/mman.h> int main(int argc, char **argv) { mmap(0, 0, PROT_READ, MAP_FILE|MAP_SHARED, -1, 0); return 0; }