mmap_test.c 258 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 // RUN: %clang %s -o %t && %run %t #include <assert.h> #include <sys/mman.h> int main() { char *buf = (char *)mmap(0, 100000, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); assert(buf); munmap(buf, 100000); }