aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCamil Staps2015-12-03 19:31:25 +0100
committerCamil Staps2015-12-03 19:31:25 +0100
commit64acf82a3541eda697387109f9e89e3a63805ec7 (patch)
tree296ebba85295124f4e08aecdf2f9fe9e71e1c23d
parentRename CSTest to MinCTest; is more to-the-point (diff)
Include guard
-rw-r--r--minctest.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/minctest.h b/minctest.h
index 260b36e..0438c9c 100644
--- a/minctest.h
+++ b/minctest.h
@@ -15,6 +15,9 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#ifndef MINCTEST_MINCTEST_H
+#define MINCTEST_MINCTEST_H
+
#include <inttypes.h>
#include <stdbool.h>
@@ -76,3 +79,4 @@ void test_exit(tester*);
*/
void test_true(tester* tester, bool check, const char* text);
+#endif // MINCTEST_MINCTEST_H