From d86a92f2bf2ecc8d040164f744d21fe849b2bad0 Mon Sep 17 00:00:00 2001 From: jsteube Date: Tue, 6 Sep 2016 09:50:46 +0200 Subject: [PATCH] Some test --- include/logging.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/logging.h b/include/logging.h index 6f2b931a6..c5a919ad6 100644 --- a/include/logging.h +++ b/include/logging.h @@ -3,7 +3,8 @@ * License.....: MIT */ -#pragma once +#ifndef _LOGGING_H +#define _LOGGING_H #include #include @@ -15,3 +16,5 @@ int log_error_nn (const char *fmt, ...); int log_out (FILE *fp, const char *fmt, ...); int log_info (const char *fmt, ...); int log_error (const char *fmt, ...); + +#endif