Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4680 right-hear 1
#ifndef __LIBC_ASM_H
2
#define __LIBC_ASM_H
3
 
4
#include __DEV_CONFIG_H
5
 
6
#ifndef NEEDS_UNDERSCORES
7
 
8
#define C_SYM(x)	x
9
#else
10
 
11
#define C_SYM(x)	_##x
12
 
13
#endif
14
 
15
#define MK_C_SYM(x)	C_SYM(x) : ; \
16
			.globl C_SYM(x)
17
 
18
#endif