Use multiline comments in C files

So there were actually only two instances of C99-style end-of-line
comments in C files - and technically one of them was just a C file
including MakeAndPlay.h.
This commit is contained in:
Misa
2021-04-16 16:42:03 -07:00
committed by Ethan Lee
parent 4c199efbac
commit c17ea40866
2 changed files with 2 additions and 2 deletions

View File

@@ -5,6 +5,6 @@
* It's heaps faster than rebuilding everything, so here we are. * It's heaps faster than rebuilding everything, so here we are.
* -flibit * -flibit
*/ */
// #define MAKEANDPLAY /* #define MAKEANDPLAY */
#endif /* MAKEANDPLAY_H */ #endif /* MAKEANDPLAY_H */

View File

@@ -1,6 +1,6 @@
#include <SDL_stdinc.h> #include <SDL_stdinc.h>
// Handle third-party dependencies' needs here /* Handle third-party dependencies' needs here */
void* lodepng_malloc(size_t size) void* lodepng_malloc(size_t size)
{ {