aboutsummaryrefslogtreecommitdiff
path: root/gnu/libg++/g++-include/sys/param.h
blob: 610a19b8f4244d2d539342bd9cf2e8e3319fb0b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef __libgxx_sys_param_h

extern "C"
{
#ifdef __sys_param_h_recursive
#include_next <sys/param.h>
#else
#define __sys_param_h_recursive

#ifdef VMS
#include "GNU_CC_INCLUDE:[sys]param.h"
#else
#include_next <sys/param.h>
#endif

#undef setbit /* Conflicts with Integer::setbit(). */

#define __libgxx_sys_param_h 1
#endif
}

#endif