23 lines
376 B
Diff
23 lines
376 B
Diff
diff --git a/t/vala-mix2.sh b/t/vala-mix2.sh
|
|
index 8e6a214..933a3ff 100644
|
|
--- a/t/vala-mix2.sh
|
|
+++ b/t/vala-mix2.sh
|
|
@@ -44,7 +44,7 @@ int main ()
|
|
END
|
|
|
|
cat > foo.h <<'END'
|
|
-int foo;
|
|
+extern int foo;
|
|
int bar (void);
|
|
int baz (void);
|
|
END
|
|
@@ -56,7 +56,7 @@ END
|
|
|
|
cat > baz.c <<'END'
|
|
#include "foo.h"
|
|
-extern int foo = 0;
|
|
+int foo = 0;
|
|
int baz (void) { return 0; }
|
|
END
|
|
|