summaryrefslogtreecommitdiffstats
path: root/osdep
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-09-18 19:42:19 +0200
committerwm4 <wm4@nowhere>2013-09-18 19:42:19 +0200
commit1298dbdf013ef055fc2bb66fb3947441b7afc222 (patch)
treed26e332f57d27c77aff5eed30a8c130010c92c55 /osdep
parentaf018f7e4fe90b058d45a8ff803af4dcf759a7ce (diff)
downloadmpv-1298dbdf013ef055fc2bb66fb3947441b7afc222.tar.bz2
mpv-1298dbdf013ef055fc2bb66fb3947441b7afc222.tar.xz
osdep/path: remove ifdefs
They're not really needed, so kill them.
Diffstat (limited to 'osdep')
-rw-r--r--osdep/path.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/osdep/path.h b/osdep/path.h
index 0a5091bc3d..6ad4ebad8a 100644
--- a/osdep/path.h
+++ b/osdep/path.h
@@ -1,15 +1,9 @@
#ifndef OSDEP_PATH_H
#define OSDEP_PATH_H
-#include "config.h"
-
-#ifdef _WIN32
char *mp_get_win_config_path(const char *filename);
-#endif
-#ifdef CONFIG_COCOA
// Returns absolute path of a resource file in a Mac OS X application bundle.
char *mp_get_macosx_bundled_path(const char *filename);
-#endif
#endif