summaryrefslogtreecommitdiff
path: root/tests/unittest/include/klibc/compiler.h
blob: 470a51cbcec12f65dc3866ebcd3b96715b7df3f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _COMPILER_H_
#define _COMPILER_H_

#define __export

/* Packed structures */
#define __packed	__attribute__((packed))

/* Weak symbols */
#define __weak

/* Specific calling conventions */
#define __cdecl

#endif /* _COMPILER_H_ */