blob: 3c99969bd62a6754b036791dc7d22245dbbb3ec3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// $Id: mman.h,v 1.2 1993/08/02 17:21:38 mycroft Exp $
#ifndef __libgxx_sys_mman_h
extern "C" {
#ifdef __sys_mman_h_recursive
#include_next <sys/mman.h>
#else
#define __sys_mman_h_recursive
#include_next <sys/mman.h>
#define __libgxx_sys_mman_h 1
#endif
}
#endif
|