diff options
Diffstat (limited to 'mysys/mysys_priv.h')
-rw-r--r-- | mysys/mysys_priv.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysys/mysys_priv.h b/mysys/mysys_priv.h index 6abadd48aeb..89a6d8aa2a7 100644 --- a/mysys/mysys_priv.h +++ b/mysys/mysys_priv.h @@ -34,3 +34,10 @@ extern pthread_mutex_t THR_LOCK_charset; #include <my_no_pthread.h> #endif +/* + EDQUOT is used only in 3 C files only in mysys/. If it does not exist on + system, we set it to some value which can never happen. +*/ +#ifndef EDQUOT +#define EDQUOT (-1) +#endif |