Version:
~ [ 0.6-2.3.46 ] ~
Architecture:
~ [ um ] ~
** Warning: Cannot open xref database.
1 #ifndef __PROC_ARCH_H__
2 #define __PROC_ARCH_H__
3
4 #define ERROR(string) write(2, string, strlen(string))
5
6 #define MESSAGE(string) write(1, string, strlen(string))
7
8 #define LINE(line) #line
9
10 #define UNTESTED() stop("Untested : " __FILE__ LINE(__LINE__))
11
12 #define UNDEFINED_BODY(func) \
13 ERROR("Undefined proc " func " called\n"); \
14 while(1)
15
16 #define UNDEFINED(func) void func(void) \
17 { \
18 UNDEFINED_BODY(#func); \
19 }
20
21 #endif
22
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.