diff options
Diffstat (limited to 'example.c')
-rw-r--r-- | example.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -16,10 +16,11 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include <stddef.h> + #include "minctest.h" int main(void) { - tester* tester = test_initialize(); + struct tester *tester = test_initialize(); tester->show_pass = false; test_true(tester, 1 == 1, "1 = 1"); |