diff options
author | Camil Staps | 2015-12-03 19:31:25 +0100 |
---|---|---|
committer | Camil Staps | 2015-12-03 19:31:25 +0100 |
commit | 64acf82a3541eda697387109f9e89e3a63805ec7 (patch) | |
tree | 296ebba85295124f4e08aecdf2f9fe9e71e1c23d | |
parent | Rename CSTest to MinCTest; is more to-the-point (diff) |
Include guard
-rw-r--r-- | minctest.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 |