aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.base/opaque1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/testsuite/gdb.base/opaque1.c')
-rw-r--r--gdb/testsuite/gdb.base/opaque1.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/gdb/testsuite/gdb.base/opaque1.c b/gdb/testsuite/gdb.base/opaque1.c
deleted file mode 100644
index c34f7aa..0000000
--- a/gdb/testsuite/gdb.base/opaque1.c
+++ /dev/null
@@ -1,18 +0,0 @@
-struct foo {
- int a;
- int b;
-} afoo = { 1, 2};
-
-struct foo *getfoo ()
-{
- return (&afoo);
-}
-
-#ifdef PROTOTYPES
-void putfoo (struct foo *foop)
-#else
-void putfoo (foop)
- struct foo *foop;
-#endif
-{
-}