summaryrefslogtreecommitdiffstats
path: root/src/test/run-make-fulldeps/static-extern-type/define-foo.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-make-fulldeps/static-extern-type/define-foo.c')
-rw-r--r--src/test/run-make-fulldeps/static-extern-type/define-foo.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/test/run-make-fulldeps/static-extern-type/define-foo.c b/src/test/run-make-fulldeps/static-extern-type/define-foo.c
deleted file mode 100644
index 39be5acfa..000000000
--- a/src/test/run-make-fulldeps/static-extern-type/define-foo.c
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <stdint.h>
-
-struct Foo {
- uint8_t x;
-};
-
-struct Foo FOO = { 42 };
-
-uint8_t bar(const struct Foo* foo) {
- return foo->x;
-}