Subversion Repositories DevTools

Rev

Rev 227 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
227 dpurdie 1
#ifndef __P
2
#if defined(__GNUC__) || (defined(__STDC__) && __STDC__)
3
#define __P(args) args
4
#else
5
#define __P(args) ()
6
#endif  /* GCC || __STDC__ */
7
#endif  /* !__P */
8
 
9
#ifndef __BEGIN_DECLS
10
#if defined(__cplusplus)
11
#define __BEGIN_DECLS	extern "C" {
12
#define __END_DECLS	}
13
#else
14
#define __BEGIN_DECLS
15
#define __END_DECLS
16
#endif
17
#endif  /* !___BEGIN_DECLS */
18
 
19