From 6d6661110829516fc4ed88b1ca65e6a8fd5ee9da Mon Sep 17 00:00:00 2001 From: cuz Date: Sun, 20 Nov 2005 22:03:29 +0000 Subject: [PATCH] Add symbol to disable inlining of functions git-svn-id: svn://svn.cc65.org/cc65/trunk@3662 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/common/inline.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/common/inline.h b/src/common/inline.h index 7220e7f9e..5c6dedb43 100644 --- a/src/common/inline.h +++ b/src/common/inline.h @@ -6,10 +6,10 @@ /* */ /* */ /* */ -/* (C) 2001 Ullrich von Bassewitz */ -/* Wacholderweg 14 */ -/* D-70597 Stuttgart */ -/* EMail: uz@cc65.org */ +/* (C) 2001-2005 Ullrich von Bassewitz */ +/* Römerstraße 52 */ +/* D-70794 Filderstadt */ +/* EMail: uz@cc65.org */ /* */ /* */ /* This software is provided 'as-is', without any expressed or implied */ @@ -44,7 +44,7 @@ -#if defined(__GNUC__) +#if defined(__GNUC__) && !defined(DISABLE_INLINE) # define HAVE_INLINE 1 # define INLINE static __inline__ #endif -- 2.39.5