From 91e169638d0cf5a8e770e5e46b92939fff618d22 Mon Sep 17 00:00:00 2001 From: Teashrock Date: Fri, 7 May 2021 10:03:30 +0300 Subject: [PATCH] Fixed double function declarations --- examples/others/raudio_standalone.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/examples/others/raudio_standalone.c b/examples/others/raudio_standalone.c index 2c2636f6a..4cb5a6b45 100644 --- a/examples/others/raudio_standalone.c +++ b/examples/others/raudio_standalone.c @@ -61,10 +61,7 @@ //---------------------------------------------------------------------------------- // Module Functions Declaration //---------------------------------------------------------------------------------- -#if !defined(_MSC_VER) -static int kbhit(void); // Check if a key has been pressed -static char getch(); // Get pressed character -#else +#if defined(_MSC_VER) #define kbhit _kbhit #define getch _getch #endif