diff options
author | Stefan Pöschel <github@basicmaster.de> | 2017-02-11 01:16:36 +0100 |
---|---|---|
committer | Stefan Pöschel <github@basicmaster.de> | 2017-02-11 01:17:00 +0100 |
commit | 209df35b899c2e6453a510940137b4bf0f31235b (patch) | |
tree | 46f39f3efd8bda3cca07fd1554a76a7a8e04717f /src | |
parent | b808b7bfecbee44527c4faa6f9cc16ed44b73a34 (diff) | |
download | ODR-PadEnc-209df35b899c2e6453a510940137b4bf0f31235b.tar.gz ODR-PadEnc-209df35b899c2e6453a510940137b4bf0f31235b.tar.bz2 ODR-PadEnc-209df35b899c2e6453a510940137b4bf0f31235b.zip |
Tiny fixes
Diffstat (limited to 'src')
-rw-r--r-- | src/common.h | 1 | ||||
-rw-r--r-- | src/pad_common.h | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/common.h b/src/common.h index 2c83dc6..bd4b80c 100644 --- a/src/common.h +++ b/src/common.h @@ -36,6 +36,7 @@ #include <string> #include <vector> #include <sstream> +#include <cstdio> extern int verbose; diff --git a/src/pad_common.h b/src/pad_common.h index c3ee01d..e855625 100644 --- a/src/pad_common.h +++ b/src/pad_common.h @@ -27,6 +27,9 @@ \author Stefan Pöschel <odr@basicmaster.de> */ +#ifndef PAD_COMMON_H_ +#define PAD_COMMON_H_ + #include <cstdio> #include <vector> #include <deque> @@ -112,3 +115,5 @@ public: // will be removed, when pull (instead of push) approach is implemented! void WriteAllPADs(int output_fd, int limit = -1); }; + +#endif /* PAD_COMMON_H_ */ |