xref: /haiku/headers/compatibility/bsd/sys/cdefs.h (revision cb29eafe2586fdb2d7685afa69fdab5d88a8b576)
1 /*
2  * Copyright 2006-2012 Haiku Inc. All Rights Reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _BSD_SYS_CDEFS_H_
6 #define _BSD_SYS_CDEFS_H_
7 
8 
9 #include_next <sys/cdefs.h>
10 #include <features.h>
11 
12 
13 #ifdef _DEFAULT_SOURCE
14 
15 
16 #define __FBSDID(x)
17 #define __unused
18 
19 #define __printflike(a, b)	__attribute__ ((format (__printf__, (a), (b))))
20 #define __printf0like(a, b)
21 
22 
23 #endif
24 
25 
26 #endif	/* _BSD_SYS_CDEFS_H_ */
27