diff options
Diffstat (limited to 'contrib/ffmpeg/berrno.h')
-rw-r--r-- | contrib/ffmpeg/berrno.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/contrib/ffmpeg/berrno.h b/contrib/ffmpeg/berrno.h new file mode 100644 index 000000000..eb3bd0cd4 --- /dev/null +++ b/contrib/ffmpeg/berrno.h @@ -0,0 +1,44 @@ +#ifndef BERRNO_H +#define BERRNO_H + +#include <Errors.h> + +// mmu_man: this is needed for http.c (defined errno) +#include <errno.h> + +#ifdef ENOENT +#undef ENOENT +#endif +#define ENOENT 2 + +#ifdef EINTR +#undef EINTR +#endif +#define EINTR 4 + +#ifdef EIO +#undef EIO +#endif +#define EIO 5 + +#ifdef EAGAIN +#undef EAGAIN +#endif +#define EAGAIN 11 + +#ifdef ENOMEM +#undef ENOMEM +#endif +#define ENOMEM 12 + +#ifdef EINVAL +#undef EINVAL +#endif +#define EINVAL 22 + +#ifdef EPIPE +#undef EPIPE +#endif +#define EPIPE 32 + +#endif /* BERRNO_H */ |