From 6ea590909fffe3cc902ed896b00c4ad007306134 Mon Sep 17 00:00:00 2001 From: sezero Date: Sat, 3 Dec 2016 01:21:41 +0300 Subject: [PATCH] src/list.h: define __inline__ as inline for Watcom. --- src/list.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/list.h b/src/list.h index d608deb..256cb30 100644 --- a/src/list.h +++ b/src/list.h @@ -7,6 +7,9 @@ #ifdef _MSC_VER #define __inline__ __inline #endif +#ifdef __WATCOMC__ +#define __inline__ inline +#endif /* * Simple doubly linked list implementation.