stream_decoder.c: move sys/stat.h include after sys/types.h.

This commit is contained in:
Ozkan Sezer 2019-11-11 11:00:02 +03:00 committed by Martijn van Beurden
parent e603c26db2
commit eadf2a6471
1 changed files with 2 additions and 1 deletions

View File

@ -37,8 +37,8 @@
#include <stdio.h>
#include <stdlib.h> /* for malloc() */
#include <string.h> /* for memset/memcpy() */
#include <sys/stat.h> /* for stat() */
#include <sys/types.h> /* for off_t */
#include <sys/stat.h> /* for stat() */
#include "share/compat.h"
#include "FLAC/assert.h"
#include "share/alloc.h"
@ -3683,3 +3683,4 @@ FLAC__bool file_eof_callback_(const FLAC__StreamDecoder *decoder, void *client_d
return feof(decoder->private_->file)? true : false;
}