diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-06-05 01:54:45 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-06-05 16:01:01 +0200 |
commit | fb8648ad4b94abd119ae75b174f578aaacbbfd55 (patch) | |
tree | e18afcba47bfdb1d6f1db59e87c5fe3ccd9e2bff /libavutil | |
parent | f25a2ece76756214da7dcde4a52a0534d9503319 (diff) | |
download | ffmpeg-fb8648ad4b94abd119ae75b174f578aaacbbfd55.tar.gz |
Remove unnecessary LIBAVFORMAT_BUILD #ifdef.
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/internal.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavutil/internal.h b/libavutil/internal.h index 51e449d3fe..ee11a0a9d2 100644 --- a/libavutil/internal.h +++ b/libavutil/internal.h @@ -141,7 +141,6 @@ #define strncpy strncpy_is_forbidden_due_to_security_issues_use_av_strlcpy #undef exit #define exit exit_is_forbidden -#ifndef LIBAVFORMAT_BUILD #undef printf #define printf please_use_av_log_instead_of_printf #undef fprintf @@ -150,7 +149,6 @@ #define puts please_use_av_log_instead_of_puts #undef perror #define perror please_use_av_log_instead_of_perror -#endif #define FF_ALLOC_OR_GOTO(ctx, p, size, label)\ {\ |