summaryrefslogtreecommitdiffstats
path: root/vidix/AsmMacros.h
diff options
context:
space:
mode:
Diffstat (limited to 'vidix/AsmMacros.h')
-rw-r--r--vidix/AsmMacros.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/vidix/AsmMacros.h b/vidix/AsmMacros.h
index f40929ade5..c202fd4cec 100644
--- a/vidix/AsmMacros.h
+++ b/vidix/AsmMacros.h
@@ -99,11 +99,6 @@ void outl(U16_t, U32_t);
#else /* not _MINIX and _ACK */
-# if defined(__STDC__) && (__STDC__ == 1)
-# ifndef NCR
-# define asm __asm
-# endif
-# endif
# ifdef SVR4
# include <sys/types.h>
# ifndef __USLC__
@@ -115,8 +110,8 @@ void outl(U16_t, U32_t);
#else
# include "../common/scoasm.h"
#endif
-#define intr_disable() asm("cli")
-#define intr_enable() asm("sti")
+#define intr_disable() __asm__("cli")
+#define intr_enable() __asm__("sti")
#endif /* _MINIX and _ACK */
#endif /* __GNUC__ */