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 */