diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-10-20 15:22:41 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-12-04 21:40:22 +0100 |
commit | cb45553f577f8e0ebfe05d3287e1b6fa5859b967 (patch) | |
tree | a351c06fb3fc1b79f40c9539af0820d9c630bd6c /libavutil/blowfish.c | |
parent | 90153465b04bf4175b8e85587d90b3b3e5399020 (diff) | |
download | ffmpeg-cb45553f577f8e0ebfe05d3287e1b6fa5859b967.tar.gz |
Remove pointless #undefs of previously forbidden functions.
Diffstat (limited to 'libavutil/blowfish.c')
-rw-r--r-- | libavutil/blowfish.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavutil/blowfish.c b/libavutil/blowfish.c index e6f07d6ad0..63cc4043ff 100644 --- a/libavutil/blowfish.c +++ b/libavutil/blowfish.c @@ -428,7 +428,6 @@ void av_blowfish_crypt(AVBlowfish *ctx, uint8_t *dst, const uint8_t *src, #ifdef TEST #include <stdio.h> -#undef printf #define NUM_VARIABLE_KEY_TESTS 34 @@ -531,7 +530,6 @@ static const uint8_t ciphertext2[16] = { #define IV "blowfish" -#undef exit static void test_blowfish(AVBlowfish *ctx, uint8_t *dst, const uint8_t *src, const uint8_t *ref, int len, uint8_t *iv, int dir, const char *test) |