1 #ifndef _LINUX_ARC_SYSDEP_H
2 #define _LINUX_ARC_SYSDEP_H 1
3 
4 #include <features.h>
5 #include <libc-internal.h>
6 
7 #ifdef	__ASSEMBLER__
8 
9 #define ENTRY(nm)		\
10 	.text `			\
11 	.align 4 `		\
12 	.globl nm `		\
13 	.type nm,@function `	\
14 nm:
15 
16 #define END(name)	.size name,.-name
17 
18 #endif /* __ASSEMBLER __*/
19 
20 #include <common/sysdep.h>
21 #endif
22