summaryrefslogtreecommitdiffstats
path: root/osdep
diff options
context:
space:
mode:
Diffstat (limited to 'osdep')
-rw-r--r--osdep/io.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/osdep/io.c b/osdep/io.c
index cc99c24370..94bd90a676 100644
--- a/osdep/io.c
+++ b/osdep/io.c
@@ -59,10 +59,7 @@ char *mp_to_utf8(void *talloc_ctx, const wchar_t *s)
#include <io.h>
#include <fcntl.h>
-
-#if HAVE_PTHREADS
#include <pthread.h>
-#endif
#include "mpvcore/mp_talloc.h"
@@ -300,12 +297,8 @@ static void init_getenv(void)
char *mp_getenv(const char *name)
{
-#if HAVE_PTHREADS
static pthread_once_t once_init_getenv = PTHREAD_ONCE_INIT;
pthread_once(&once_init_getenv, init_getenv);
-#else
- init_getenv();
-#endif
// Copied from musl, http://git.musl-libc.org/cgit/musl/tree/COPYRIGHT
// Copyright © 2005-2013 Rich Felker, standard MIT license
int i;