diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-02-17 15:45:40 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-02-17 15:45:47 -0800 |
commit | 2155e139c7cfc873636229b9d6b5fd6265a3a9a0 (patch) | |
tree | bcf7c26c2c5eb2339929ed825784fee03118d8ed /util | |
parent | 12522375428d3f5b155af6e8295d833fafcb8e95 (diff) |
unifdef __SCO__
../common/scoasm.h didn't even exist, so this would have broken the
build if it was ever set
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'util')
-rw-r--r-- | util/AsmMacros.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/util/AsmMacros.h b/util/AsmMacros.h index 9d9d9f8..8305903 100644 --- a/util/AsmMacros.h +++ b/util/AsmMacros.h @@ -333,11 +333,7 @@ void outl(U16_t, U32_t); # define __USLC__ # endif # endif -# ifndef __SCO__ -# include <sys/inline.h> -# else -# include "../common/scoasm.h" -# endif +# include <sys/inline.h> # define intr_disable() asm("cli") # define intr_enable() asm("sti") |