14 lines
304 B
C
14 lines
304 B
C
#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 */
|
|
#include <errno.h>
|
|
|
|
#define PAGESIZE sysconf(_SC_PAGESIZE)
|
|
#endif
|