l3.libnazgul/src/nzg_global.h

10 lines
235 B
C
Raw Normal View History

2020-03-03 22:41:24 +00:00
#include <unistd.h> /* POSIX et al */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h> /* pour O_RDWR */
#include <sys/types.h>
#include <sys/mman.h> /* shm_open */
2020-03-03 22:42:59 +00:00
#define PAGESIZE sysconf(_SC_PAGESIZE)