From d8306cf99500d8fb62b5adad6fe0032adca5fadb Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Sat, 9 Apr 2016 13:45:20 -0400 Subject: [PATCH] Wrap PrintFormat in once block --- src/kstd/PrintFormat.hh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/kstd/PrintFormat.hh b/src/kstd/PrintFormat.hh index 9be0580..cbbabf5 100644 --- a/src/kstd/PrintFormat.hh +++ b/src/kstd/PrintFormat.hh @@ -6,7 +6,11 @@ * Declares printFormat(), for writing formatted strings to the appropriate channel. */ +#ifndef __KSTD_PRINTFORMAT_HH__ +#define __KSTD_PRINTFORMAT_HH__ + #include +#include "Attributes.hh" namespace kstd { @@ -20,3 +24,5 @@ int printFormat(const char* format, va_list args); /** @} */ } /* namespace kstd */ + +#endif /* __KSTD_PRINTFORMAT_HH__ */