summaryrefslogtreecommitdiff
path: root/libavutil/random_seed.c
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2011-07-17 14:17:10 +0100
committerMans Rullgard <mans@mansr.com>2011-07-17 20:47:39 +0100
commit172ee1da2b2b7c84733822092eb29fcaec102055 (patch)
tree202035e25ee394583d82508a12ecb53cd296617b /libavutil/random_seed.c
parent08e09ed7db732ebc53b8c60d7a39ac0abd49694f (diff)
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/random_seed.c')
-rw-r--r--libavutil/random_seed.c4
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)
{