From 8823ffb8e0cd34615f44e5d241030c57a7465153 Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Fri, 2 Sep 2016 16:22:43 +0200 Subject: Fix compilation issue on CentOS 7 Apparently PRId64 is not defined in inttypes.h --- wavfile.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wavfile.h') diff --git a/wavfile.h b/wavfile.h index f7ba379..9a7fb6a 100644 --- a/wavfile.h +++ b/wavfile.h @@ -9,7 +9,7 @@ http://www.nd.edu/~dthain/courses/cse20211/fall2013/wavfile #define WAVFILE_H #include -#include +#include FILE * wavfile_open( const char *filename, int rate ); void wavfile_write( FILE *file, short data[], int length ); -- cgit v1.2.3