From 73b158d27d95615439334b400c05bc1a9b8453db Mon Sep 17 00:00:00 2001 From: Chris Young Date: Sun, 18 Jan 2015 23:54:21 +0000 Subject: Fix remaining linker errors --- amiga/os3support.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'amiga/os3support.h') diff --git a/amiga/os3support.h b/amiga/os3support.h index 4b5deb251..df88cd5a5 100644 --- a/amiga/os3support.h +++ b/amiga/os3support.h @@ -27,6 +27,7 @@ #ifndef __amigaos4__ #include + #include #include @@ -37,6 +38,7 @@ #include #endif +/* C macros */ #ifndef ASM #define ASM #endif @@ -45,6 +47,8 @@ #define REG(reg,arg) arg __asm(#reg) #endif +#define MIN(a,b) (((a)<(b))?(a):(b)) + /* Macros */ #define IsMinListEmpty(L) (L)->mlh_Head->mln_Succ == 0 #define LIB_IS_AT_LEAST(B,V,R) ((B)->lib_Version>(V)) || \ @@ -116,6 +120,9 @@ /* application */ #define Notify(...) (void)0 +/* DataTypes */ +#define SaveDTObjectA(O,W,R,F,M,I,A) DoDTMethod(O,W,R,DTM_WRITE,F,M,NULL) + /* diskfont */ /* Only used in one place we haven't ifdeffed, where it returns the charset name */ #define ObtainCharsetInfo(A,B,C) (const char *)"ISO-8859-1" -- cgit v1.2.3