X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fcommon%2Finline.h;h=5c6dedb43a8ca288f3b9fdf4b6d6a3f2b2868559;hb=74108cd74fc3ca3ad4f69b743233fa79791106b9;hp=cf8cecd95cc8257a160d7643f0f932ce003a3c73;hpb=87e9f7379bee3a18c3984f8e1e33520aee2e1520;p=cc65 diff --git a/src/common/inline.h b/src/common/inline.h index cf8cecd95..5c6dedb43 100644 --- a/src/common/inline.h +++ b/src/common/inline.h @@ -1,15 +1,15 @@ /*****************************************************************************/ /* */ -/* cfeature.h */ +/* inline.h */ /* */ -/* Define compiler features */ +/* Definitions to use the inline compiler feature */ /* */ /* */ /* */ -/* (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 */ @@ -33,25 +33,25 @@ -#ifndef CFEATURE_H -#define CFEATURE_H +#ifndef INLINE_H +#define INLINE_H /*****************************************************************************/ -/* Defines */ +/* Defines */ /*****************************************************************************/ -#if defined(__GNUC__) +#if defined(__GNUC__) && !defined(DISABLE_INLINE) # define HAVE_INLINE 1 # define INLINE static __inline__ #endif -/* End of cfeature.h */ +/* End of inline.h */ #endif