comparison vidix/AsmMacros.h @ 25553:6ac1ece1f9fe

Add multiple inclusion guards to all header files that lack them.
author diego
date Tue, 01 Jan 2008 21:35:58 +0000
parents a9e111b88c4a
children a93e46adb54c
comparison
equal deleted inserted replaced
25552:21f17f58f5bc 25553:6ac1ece1f9fe
61 61
62 /* 62 /*
63 * Modified for readability by Nick Kurshev 63 * Modified for readability by Nick Kurshev
64 */ 64 */
65 65
66 #ifndef ASMMACROS_H
67 #define ASMMACROS_H
68
66 #if defined(__GNUC__) 69 #if defined(__GNUC__)
67 #if defined(__alpha__) 70 #if defined(__alpha__)
68 #include "sysdep/AsmMacros_alpha.h" 71 #include "sysdep/AsmMacros_alpha.h"
69 #elif defined(__ia64__) 72 #elif defined(__ia64__)
70 #include "sysdep/AsmMacros_ia64.h" 73 #include "sysdep/AsmMacros_ia64.h"
113 #define intr_disable() asm("cli") 116 #define intr_disable() asm("cli")
114 #define intr_enable() asm("sti") 117 #define intr_enable() asm("sti")
115 118
116 #endif /* _MINIX and _ACK */ 119 #endif /* _MINIX and _ACK */
117 #endif /* __GNUC__ */ 120 #endif /* __GNUC__ */
121
122 #endif /* ASMMACROS_H */