diff options
-rw-r--r-- | etisnoop.cpp | 2 | ||||
-rw-r--r-- | utils.hpp | 2 | ||||
-rw-r--r-- | wavfile.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/etisnoop.cpp b/etisnoop.cpp index 09d8001..ff0e61b 100644 --- a/etisnoop.cpp +++ b/etisnoop.cpp @@ -37,7 +37,7 @@ #include <sys/stat.h> #include <fcntl.h> #include <string.h> -#include <inttypes.h> +#include <cinttypes> #include <string> #include <vector> #include <map> @@ -31,7 +31,7 @@ #include <string> #include <cstdint> -#include <inttypes.h> +#include <cinttypes> void set_verbosity(int v); int get_verbosity(void); @@ -9,7 +9,7 @@ http://www.nd.edu/~dthain/courses/cse20211/fall2013/wavfile #define WAVFILE_H #include <stdio.h> -#include <inttypes.h> +#include <cinttypes> FILE * wavfile_open( const char *filename, int rate ); void wavfile_write( FILE *file, short data[], int length ); |