Skip to content

Commit

Permalink
Fix strcasecmp on emscripten
Browse files Browse the repository at this point in the history
  • Loading branch information
turol committed May 9, 2015
1 parent 6690bf1 commit 65e7de0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/audio/music.c
@@ -1,6 +1,6 @@
#include <stdlib.h>
#include <string.h>
#ifdef __linux__
#if defined(__linux__) || defined(EMSCRIPTEN)
#include <strings.h> // strcasecmp
#endif // __linux__
#include "resources/pathmanager.h"
Expand Down
2 changes: 1 addition & 1 deletion src/audio/sources/dumb_source.c
Expand Up @@ -2,7 +2,7 @@

#include <stdlib.h>
#include <string.h>
#ifdef __linux__
#if defined(__linux__) || defined(EMSCRIPTEN)
#include <strings.h> // strcasecmp
#endif // __linux__
#include <dumb.h>
Expand Down

0 comments on commit 65e7de0

Please sign in to comment.