]> git.sur5r.net Git - cc65/blobdiff - src/common/inline.h
Fixed two compiler warnings.
[cc65] / src / common / inline.h
index cf8cecd95cc8257a160d7643f0f932ce003a3c73..5c6dedb43a8ca288f3b9fdf4b6d6a3f2b2868559 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__)
+#if defined(__GNUC__) && !defined(DISABLE_INLINE)
 #  define HAVE_INLINE  1
 #  define INLINE       static __inline__
 #endif
 
 
 
-/* End of cfeature.h */
+/* End of inline.h */
 
 #endif