1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-07-12 07:30:54 +02:00
ffmpeg/berrno.h
Diego Biurrun 115329f160 COSMETICS: Remove all trailing whitespace.
Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-17 18:14:38 +00:00

45 lines
517 B
C

#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 */