Commit f8f6181b authored by mmu_man's avatar mmu_man

This is no longer necessary for BeOS now that we don't play nasty tricks with error codes.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@7972 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent cdb0880a
#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 */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment