Clean up header guards that don't match their file name
[qemu/kevin.git] / include / qemu / mmap-alloc.h
blob0899b2f01e97ad30d621f60c20f89b8c26f2af8a
1 #ifndef QEMU_MMAP_ALLOC
2 #define QEMU_MMAP_ALLOC
4 #include "qemu-common.h"
6 size_t qemu_fd_getpagesize(int fd);
8 void *qemu_ram_mmap(int fd, size_t size, size_t align, bool shared);
10 void qemu_ram_munmap(void *ptr, size_t size);
12 #endif