1 /*
2  * Setup some glibc defines so we can just drop in the
3  * asm files from glibc without any modification.
4  */
5 
6 #include <features.h>
7 #include <bits/wordsize.h>
8 
9 #define ENTRY(sym) \
10 	.global sym; \
11 	.type   sym,%function; \
12 	sym:
13 
14 #define BP_SYM(sym) sym
15 
16 #define L(sym) LOC(sym)
17 #define LOC(sym) \
18 	.L ## sym
19 
20 #define END(sym) \
21 	.size sym,.-sym;
22