l3.libnazgul/src/nzg_global.h

16 lines
305 B
C
Raw Normal View History

#ifndef _NZG_GLOBAL
#define _NZG_GLOBAL 1
#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 */
2004-02-19 10:39:55 +00:00
#include <errno.h>
2004-02-17 16:38:08 +00:00
#define PAGESIZE sysconf(_SC_PAGESIZE)
#endif