summaryrefslogtreecommitdiffhomepage
path: root/src/utils.c
diff options
context:
space:
mode:
authorReece Mackie <[email protected]>2019-04-28 15:54:50 +0100
committerReece Mackie <[email protected]>2019-04-28 15:54:50 +0100
commitf8c6226826b03a4b624e5b2cc96d488e3975894f (patch)
treea34bfccaaaa84d23aae36dad46b9cc38b96182c6 /src/utils.c
parente0580e6322236f03c75ff8088c98bc079ac8ca95 (diff)
parent40940f439860b3345198dc44cd493f0c0dc12f7c (diff)
downloadraylib-f8c6226826b03a4b624e5b2cc96d488e3975894f.tar.gz
raylib-f8c6226826b03a4b624e5b2cc96d488e3975894f.zip
Merge branch 'master' into gamepad-rework
Diffstat (limited to 'src/utils.c')
-rw-r--r--src/utils.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/utils.c b/src/utils.c
index 52fd0b45..ee4be46d 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -34,7 +34,7 @@
// Check if config flags have been externally provided on compilation line
#if !defined(EXTERNAL_CONFIG_FLAGS)
- #include "config.h" // Defines module configuration flags
+ #include "config.h" // Defines module configuration flags
#endif
#include "utils.h"
@@ -69,7 +69,7 @@ AAssetManager *assetManager;
// Module specific Functions Declaration
//----------------------------------------------------------------------------------
#if defined(PLATFORM_ANDROID)
-/* This should be in <stdio.h>, but Travis doesn't find it... */
+// This should be in <stdio.h>, but Travis does not find it...
FILE *funopen(const void *cookie, int (*readfn)(void *, char *, int), int (*writefn)(void *, const char *, int),
fpos_t (*seekfn)(void *, fpos_t, int), int (*closefn)(void *));
@@ -173,7 +173,7 @@ FILE *android_fopen(const char *fileName, const char *mode)
return funopen(asset, android_read, android_write, android_seek, android_close);
}
-#endif
+#endif // PLATFORM_ANDROID
//----------------------------------------------------------------------------------
// Module specific Functions Definition
@@ -201,7 +201,7 @@ static int android_close(void *cookie)
AAsset_close((AAsset *)cookie);
return 0;
}
-#endif
+#endif // PLATFORM_ANDROID
#if defined(PLATFORM_UWP)
@@ -276,4 +276,4 @@ UWPMessage* GetMessageFromUWP(void)
return NULL;
}
-#endif // defined(PLATFORM_UWP)
+#endif // PLATFORM_UWP