diff options
author | Ramiro Polla <ramiro@lisha.ufsc.br> | 2007-02-24 19:46:54 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2007-02-24 19:46:54 +0000 |
commit | 5dff169489a9ff1da25d12cae3b968e90cc4a609 (patch) | |
tree | df06976e3a78ce42df7beb221a540661995daa3a | |
parent | e870111e4f7df038216781fdad2999f18a08ca9c (diff) | |
download | ffmpeg-5dff169489a9ff1da25d12cae3b968e90cc4a609.tar.gz |
remove fallback definitions of PRIxNN macros,
patch by Ramiro Polla ramiro =a= lisha =d= ufsc =d= br
Originally committed as revision 8118 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavutil/internal.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/libavutil/internal.h b/libavutil/internal.h index 794d9dc351..1a54acae7f 100644 --- a/libavutil/internal.h +++ b/libavutil/internal.h @@ -46,34 +46,6 @@ #define M_PI 3.14159265358979323846 #endif -#ifndef PRId64 -#define PRId64 "lld" -#endif - -#ifndef PRIu64 -#define PRIu64 "llu" -#endif - -#ifndef PRIx64 -#define PRIx64 "llx" -#endif - -#ifndef PRIX64 -#define PRIX64 "llX" -#endif - -#ifndef PRId32 -#define PRId32 "d" -#endif - -#ifndef PRIdFAST16 -#define PRIdFAST16 PRId32 -#endif - -#ifndef PRIdFAST32 -#define PRIdFAST32 PRId32 -#endif - #ifndef INT16_MIN #define INT16_MIN (-0x7fff-1) #endif |