ref: 3f387257e934ca94273c65cee09b7b61dcae1591
parent: 8c3fe74ebda3b3bdd8d1fbd5af3c03de6229c834
author: Roberto E. Vargas Caballero <k0ga@shike2.com>
date: Wed Feb 15 04:00:30 EST 2017
[tests] Fix test added in 6fe29dd Tests must have a main function which returns 0.
--- a/tests/execute/0110-typedefcast.c
+++ b/tests/execute/0110-typedefcast.c
@@ -1,2 +1,8 @@
typedef int myint;
myint x = (myint)1;
+
+int
+main(void)
+{
+ return x-1;
+}