blob: f90d9e534775641d693ca4910815e3c14b10d7c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* $OpenBSD: stand.h,v 1.1 1999/09/27 21:40:04 espie Exp $ */
/* provided to cater for BSD idiosyncrasies */
#ifndef __P
#ifdef __STDC__
#define __P(x) x
#else
#define __P(x) ()
#endif
#endif
#ifndef __GNUC__
#define __attribute__(x)
#endif
|