Module: libav Branch: master Commit: 18d882551718f3e8da2c08ea664b4d0a1205212b
Author: Martin Storsjö <[email protected]> Committer: Martin Storsjö <[email protected]> Date: Thu Sep 13 12:55:44 2012 +0300 trasher: Include all the necessary headers The missing headers are required for errno and for strerror. This fixes building of this tool on mingw32ce. Signed-off-by: Martin Storsjö <[email protected]> --- tools/trasher.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/tools/trasher.c b/tools/trasher.c index 11605b8..35625e9 100644 --- a/tools/trasher.c +++ b/tools/trasher.c @@ -21,6 +21,8 @@ #include <stdio.h> #include <stdlib.h> #include <inttypes.h> +#include <errno.h> +#include <string.h> static uint32_t state; static uint32_t ran(void) _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
