]> git.sesse.net Git - ffmpeg/blobdiff - berrno.h
rename --tune to --cpu and make --cpu pass the apropriate -march=xx option to the...
[ffmpeg] / berrno.h
index f343706cafefee270451147b3ec4957c924be1ec..eb3bd0cd41ece500bab271255abbac3a0af9c204 100644 (file)
--- a/berrno.h
+++ b/berrno.h
@@ -3,39 +3,42 @@
 
 #include <Errors.h>
 
+// mmu_man: this is needed for http.c (defined errno)
+#include <errno.h>
+
 #ifdef ENOENT
 #undef ENOENT
-#endif 
+#endif
 #define ENOENT 2
 
 #ifdef EINTR
 #undef EINTR
-#endif 
+#endif
 #define EINTR  4
 
 #ifdef EIO
 #undef EIO
-#endif 
+#endif
 #define EIO    5
 
 #ifdef EAGAIN
 #undef EAGAIN
-#endif 
+#endif
 #define EAGAIN 11
 
 #ifdef ENOMEM
 #undef ENOMEM
-#endif 
+#endif
 #define ENOMEM 12
 
 #ifdef EINVAL
 #undef EINVAL
-#endif 
+#endif
 #define EINVAL 22
 
 #ifdef EPIPE
 #undef EPIPE
-#endif 
+#endif
 #define EPIPE  32
 
 #endif /* BERRNO_H */