From 2ac8a70f014da67982a52842c472b0dd7b2bcfae Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Tue, 4 Aug 2009 01:44:32 +0000 Subject: [PATCH] 2009-08-04 03:44 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * source/vm/fm.c ! Fixed linux/sunpro warning. --- harbour/ChangeLog | 4 ++++ harbour/source/vm/fm.c | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index f33d3592e8..a42a0df31b 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,10 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-08-04 03:44 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * source/vm/fm.c + ! Fixed linux/sunpro warning. + 2009-08-04 03:38 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * config/linux/sunpro.cf * config/sunos/sunpro.cf diff --git a/harbour/source/vm/fm.c b/harbour/source/vm/fm.c index 4b92d60001..5917b1ed9e 100644 --- a/harbour/source/vm/fm.c +++ b/harbour/source/vm/fm.c @@ -79,7 +79,9 @@ /* For Sun C, a more generic solution would be nice */ #if defined( __SUNPRO_C ) || defined( __SUNPRO_CC ) -# define __inline __inline__ +# ifndef __inline +# define __inline __inline__ +# endif #endif /* NOTE: For OS/2. Must be ahead of any and all #include statements */