diff options
author | Mans Rullgard <mans@mansr.com> | 2011-07-17 14:17:10 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-07-17 20:47:39 +0100 |
commit | 172ee1da2b2b7c84733822092eb29fcaec102055 (patch) | |
tree | 202035e25ee394583d82508a12ecb53cd296617b /libavutil | |
parent | 08e09ed7db732ebc53b8c60d7a39ac0abd49694f (diff) | |
download | ffmpeg-172ee1da2b2b7c84733822092eb29fcaec102055.tar.gz |
random_seed: use proper #includes
Use <> for system headers, add needed math.h, drop unnecessary avutil.h.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/random_seed.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/random_seed.c b/libavutil/random_seed.c index a1078d8bbb..ee71542652 100644 --- a/libavutil/random_seed.c +++ b/libavutil/random_seed.c @@ -20,10 +20,10 @@ #include <unistd.h> #include <fcntl.h> +#include <math.h> +#include <time.h> #include "timer.h" -#include "time.h" #include "random_seed.h" -#include "avutil.h" static int read_random(uint32_t *dst, const char *file) { |