aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/alcConfig.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2014-02-27 18:17:20 -0800
committerChris Robinson <[email protected]>2014-02-27 18:17:20 -0800
commitea8a85b19ce3c9786defaf22eab4dc4fd5011486 (patch)
treef82c741bba701ed98dacb1b7d6ec454810c3b4b3 /Alc/alcConfig.c
parent3867e3857de3b52afb505c173ace0819252b259c (diff)
Move PATH_MAX fallback definitions to alMain.h
Diffstat (limited to 'Alc/alcConfig.c')
-rw-r--r--Alc/alcConfig.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/Alc/alcConfig.c b/Alc/alcConfig.c
index a2355fc0..740d0f86 100644
--- a/Alc/alcConfig.c
+++ b/Alc/alcConfig.c
@@ -32,7 +32,6 @@
#include <stdio.h>
#include <ctype.h>
#include <string.h>
-#include <limits.h>
#include "alMain.h"
@@ -40,13 +39,6 @@
#include <shlobj.h>
#endif
-#ifndef PATH_MAX
-#ifdef MAX_PATH
-#define PATH_MAX MAX_PATH
-#else
-#define PATH_MAX 4096
-#endif
-#endif
typedef struct ConfigEntry {
char *key;