From 3dbee762303c4598133eafe72caaf9ee2f9524df Mon Sep 17 00:00:00 2001 From: Crayon2000 Date: Wed, 1 Feb 2017 23:30:25 -0500 Subject: [PATCH] Fix warnings with latest devkitPro release The warning was: function is static but used in inline function which is not static. --- GRRLIB/GRRLIB/grrlib.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/GRRLIB/GRRLIB/grrlib.h b/GRRLIB/GRRLIB/grrlib.h index 6d3c81f..4ca2b65 100644 --- a/GRRLIB/GRRLIB/grrlib.h +++ b/GRRLIB/GRRLIB/grrlib.h @@ -183,18 +183,14 @@ GRR_EXTERN void *xfb[2] GRR_INITS(NULL, NULL); GRR_EXTERN u32 fb GRR_INIT(0); //============================================================================== // procedure and function prototypes -// Inline function handling - http://www.greenend.org.uk/rjk/2003/03/inline.html +// Inline function handling //============================================================================== #include "grrlib/GRRLIB__lib.h" #if defined __GRRLIB_CORE__ # define INLINE #else -# if __GNUC__ && !__GNUC_STDC_INLINE__ # define INLINE static inline -# else -# define INLINE inline -# endif #endif #include "grrlib/GRRLIB__inline.h"