Mercurial > libavutil.hg
changeset 885:311037a6cb91 libavutil
Add missing includes to libavutil/error.h
author | mru |
---|---|
date | Sun, 14 Mar 2010 22:25:31 +0000 |
parents | bac1abbd0702 |
children | d4062b438548 |
files | error.h |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/error.h Sun Mar 14 21:16:29 2010 +0000 +++ b/error.h Sun Mar 14 22:25:31 2010 +0000 @@ -24,6 +24,9 @@ #ifndef AVUTIL_ERROR_H #define AVUTIL_ERROR_H +#include <errno.h> +#include "avutil.h" + /* error handling */ #if EINVAL > 0 #define AVERROR(e) (-(e)) /**< Returns a negative error code from a POSIX error code, to return from library functions. */