]> 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 7220e7f9e0c1e9a74776aeafe3acab0eb3cfdf0c..b90b3d1f459c172ab511e41217020fce1a7c70ed 100644 (file)
@@ -1,15 +1,15 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                inline.h                                  */
+/*                                 inline.h                                  */
 /*                                                                           */
-/*             Definitions to use the inline compiler feature               */
+/*              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       */
 
 
 /*****************************************************************************/
-/*                                 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
 
 
@@ -54,6 +54,3 @@
 /* End of inline.h */
 
 #endif
-
-
-