diff options
author | Mart Lubbers | 2016-08-28 17:35:54 +0200 |
---|---|---|
committer | Mart Lubbers | 2016-08-28 17:35:54 +0200 |
commit | fd0fa061c30021396571beb1cfadd0aa464825b3 (patch) | |
tree | 68073d4d12f4376ef4206510df49357eb0dfef88 /example.c | |
parent | More timing (diff) |
linux kernel coding style, fix deprecated libraries
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"); |