Import 2.1.36
[davej-history.git] / include / asm-alpha / init.h
blob7d769dfcd0fc20f93a1c889ed0ba097c9c18536e
1 #ifndef _ALPHA_INIT_H
2 #define _ALPHA_INIT_H
4 #define __init __attribute__ ((__section__ (".text.init")))
5 #define __initdata __attribute__ ((__section__ (".data.init")))
6 #define __initfunc(__arginit) \
7 __arginit __init; \
8 __arginit
10 /* For assembly routines */
11 #define __INIT .section .text.init,"ax"
12 #define __FINIT .previous
13 #define __INITDATA .section .data.init,"a"
15 #endif