C: create my own include file

This commit is contained in:
2021-09-03 15:17:18 +02:00
parent 8ebb596c9f
commit 215629a19c
4 changed files with 21 additions and 41 deletions

View File

@@ -2,11 +2,11 @@
* https://github.com/braoult/exercism/blob/master/c/templates/GNUmakefile
*/
#if defined UNIT_TEST || defined DEBUG
#include <stdio.h>
#include <stdlib.h>
# include <stdio.h>
# include <stdlib.h>
#endif
#ifdef TESTALL
#undef TEST_IGNORE
#define TEST_IGNORE() {}
# undef TEST_IGNORE
# define TEST_IGNORE() {}
#endif