From e244ea431080b0cfeb90461a356ffb6808973c67 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fran=C3=A7ois=20Revol?= Date: Wed, 14 Feb 2007 01:08:00 +0000 Subject: [PATCH] This is no longer necessary for BeOS now that we don't play nasty tricks with error codes. Originally committed as revision 7972 to svn://svn.ffmpeg.org/ffmpeg/trunk --- berrno.h | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 berrno.h diff --git a/berrno.h b/berrno.h deleted file mode 100644 index eb3bd0c..0000000 --- a/berrno.h +++ /dev/null @@ -1,44 +0,0 @@ -#ifndef BERRNO_H -#define BERRNO_H - -#include - -// mmu_man: this is needed for http.c (defined errno) -#include - -#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 */ -- 2.7.4