aboutsummaryrefslogtreecommitdiff
path: root/example.c
diff options
context:
space:
mode:
authorMart Lubbers2016-08-28 17:35:54 +0200
committerMart Lubbers2016-08-28 17:35:54 +0200
commitfd0fa061c30021396571beb1cfadd0aa464825b3 (patch)
tree68073d4d12f4376ef4206510df49357eb0dfef88 /example.c
parentMore timing (diff)
linux kernel coding style, fix deprecated libraries
Diffstat (limited to 'example.c')
-rw-r--r--example.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/example.c b/example.c
index 52f3a49..9fcc46c 100644
--- a/example.c
+++ b/example.c
@@ -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");