diff options
author | Stefan Pöschel <github@basicmaster.de> | 2017-03-18 14:14:11 +0100 |
---|---|---|
committer | Stefan Pöschel <github@basicmaster.de> | 2017-03-18 14:14:11 +0100 |
commit | a18e7845e0a3abace484c84cdd8f4a29b5b71d93 (patch) | |
tree | 13b4bde29bc4ecfeb88da148e7022160b5ab7de9 /src/common.h | |
parent | fc24d78c50dfe22600cf8d8adf059c10f0573334 (diff) | |
download | ODR-PadEnc-a18e7845e0a3abace484c84cdd8f4a29b5b71d93.tar.gz ODR-PadEnc-a18e7845e0a3abace484c84cdd8f4a29b5b71d93.tar.bz2 ODR-PadEnc-a18e7845e0a3abace484c84cdd8f4a29b5b71d93.zip |
Use C headers where appropriate
Using the C++ versions does not guarantee the availability of the
global namespace functions.
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common.h b/src/common.h index bd4b80c..a2981c4 100644 --- a/src/common.h +++ b/src/common.h @@ -36,7 +36,7 @@ #include <string> #include <vector> #include <sstream> -#include <cstdio> +#include <stdio.h> extern int verbose; |