diff options
author | Clément Bœsch <cboesch@gopro.com> | 2017-09-07 15:52:47 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2017-09-08 18:51:05 +0200 |
commit | e0b9b3e60ea3b970c5fcdbccb401cd9d93b9a63f (patch) | |
tree | 3fad1b596b3fc703131c49ca15d2cab9eb63e449 /libavutil/tests/softfloat.c | |
parent | dc27df47ff99fb29ed36711a62efb78ee28dba97 (diff) | |
download | ffmpeg-e0b9b3e60ea3b970c5fcdbccb401cd9d93b9a63f.tar.gz |
lavu/tests: move timer.h include earlier
In the next commit, timer.h will require a _GNU_SOURCE to be set before
including system headers. This commit prevents compilation failures.
Diffstat (limited to 'libavutil/tests/softfloat.c')
-rw-r--r-- | libavutil/tests/softfloat.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/tests/softfloat.c b/libavutil/tests/softfloat.c index 16788d4da9..c06de44933 100644 --- a/libavutil/tests/softfloat.c +++ b/libavutil/tests/softfloat.c @@ -18,6 +18,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "libavutil/timer.h" + #include <inttypes.h> #include "libavutil/softfloat.h" |