From 42305157924b4db1276ee95f1f6c8c1c342b8f37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADtor=20Santos=20Costa?= Date: Tue, 26 Jun 2012 22:30:15 +0100 Subject: [PATCH] fix inconsistent usage for extern/EXTERN. --- H/TermExt.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/H/TermExt.h b/H/TermExt.h index a53fcaec1..1109e6e8a 100755 --- a/H/TermExt.h +++ b/H/TermExt.h @@ -177,7 +177,7 @@ special_functors; #endif /* YAP_H */ -inline extern Float CpFloatUnaligned(CELL *ptr); +inline EXTERN Float CpFloatUnaligned(CELL *ptr); #if SIZEOF_DOUBLE == SIZEOF_LONG_INT @@ -206,7 +206,7 @@ FloatOfTerm (Term t) #define InitUnalignedFloat() -inline extern Float +inline EXTERN Float CpFloatUnaligned(CELL *ptr) { return *((Float *)ptr); @@ -216,7 +216,7 @@ CpFloatUnaligned(CELL *ptr) #if SIZEOF_DOUBLE == 2*SIZEOF_LONG_INT -inline extern void AlignGlobalForDouble( USES_REGS1 ); +inline EXTERN void AlignGlobalForDouble( USES_REGS1 ); #define DOUBLE_ALIGNED(ADDR) ((CELL)(ADDR) & 0x4)