Browse Source

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>
tags/n0.9
Mans Rullgard 14 years ago
parent
commit
172ee1da2b
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavutil/random_seed.c

+ 2
- 2
libavutil/random_seed.c View File

@@ -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)
{


Loading…
Cancel
Save