diff options
author | Chris Robinson <[email protected]> | 2014-02-27 18:17:20 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-02-27 18:17:20 -0800 |
commit | ea8a85b19ce3c9786defaf22eab4dc4fd5011486 (patch) | |
tree | f82c741bba701ed98dacb1b7d6ec454810c3b4b3 /Alc/helpers.c | |
parent | 3867e3857de3b52afb505c173ace0819252b259c (diff) |
Move PATH_MAX fallback definitions to alMain.h
Diffstat (limited to 'Alc/helpers.c')
-rw-r--r-- | Alc/helpers.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Alc/helpers.c b/Alc/helpers.c index 4b3973d9..e3f51b2c 100644 --- a/Alc/helpers.c +++ b/Alc/helpers.c @@ -32,7 +32,6 @@ #include <time.h> #include <errno.h> #include <stdarg.h> -#include <limits.h> #ifdef HAVE_MALLOC_H #include <malloc.h> #endif @@ -107,15 +106,6 @@ extern inline ALint fastf2i(ALfloat f); extern inline ALuint fastf2u(ALfloat f); -#ifndef PATH_MAX -#ifdef MAX_PATH -#define PATH_MAX MAX_PATH -#else -#define PATH_MAX 4096 -#endif -#endif - - ALuint CPUCapFlags = 0; |