summaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-cdtest/cdtest-foo.h
diff options
context:
space:
mode:
Diffstat (limited to 'ld/testsuite/ld-cdtest/cdtest-foo.h')
-rw-r--r--ld/testsuite/ld-cdtest/cdtest-foo.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/ld/testsuite/ld-cdtest/cdtest-foo.h b/ld/testsuite/ld-cdtest/cdtest-foo.h
deleted file mode 100644
index 0afe52a829f..00000000000
--- a/ld/testsuite/ld-cdtest/cdtest-foo.h
+++ /dev/null
@@ -1,24 +0,0 @@
-// Class Foo
-
-#pragma interface
-
-#define FOOLISH_NUMBER -4711
-
-#ifndef FOO_MSG_LEN
-#define FOO_MSG_LEN 80
-#endif
-
-class Foo {
- static int foos;
- int i;
- static const int len = FOO_MSG_LEN;
- char message[len];
-public:
- static void init_foo ();
- static int nb_foos() { return foos; }
- Foo();
- Foo( char* message);
- Foo(const Foo&);
- Foo & operator= (const Foo&);
- ~Foo ();
-};