diff options
Diffstat (limited to 'libctf/ctf-create.c')
-rw-r--r-- | libctf/ctf-create.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libctf/ctf-create.c b/libctf/ctf-create.c index ee87575..b319476 100644 --- a/libctf/ctf-create.c +++ b/libctf/ctf-create.c @@ -24,6 +24,10 @@ #include <unistd.h> #include <zlib.h> +#ifndef EOVERFLOW +#define EOVERFLOW ERANGE +#endif + #ifndef roundup #define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y)) #endif |