]> git.sur5r.net Git - cc65/blobdiff - src/common/inline.h
Fixed LinuxDoc Tools issues in some verbatim blocks in the Atari document.
[cc65] / src / common / inline.h
index cf8cecd95cc8257a160d7643f0f932ce003a3c73..b90b3d1f459c172ab511e41217020fce1a7c70ed 100644 (file)
@@ -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       */
 
 
 
-#ifndef CFEATURE_H
-#define CFEATURE_H
+#ifndef INLINE_H
+#define INLINE_H
 
 
 
 /*****************************************************************************/
-/*                                 Defines                                  */
+/*                                  Defines                                  */
 /*****************************************************************************/
 
 
 
-#if defined(__GNUC__)
-#  define HAVE_INLINE  1
-#  define INLINE       static __inline__
+#if defined(__GNUC__) && !defined(DISABLE_INLINE)
+#  define HAVE_INLINE   1
+#  define INLINE        static __inline__
 #endif
 
 
 
-/* End of cfeature.h */
+/* End of inline.h */
 
 #endif
-
-
-