summaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.base/solib2.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/testsuite/gdb.base/solib2.c')
-rw-r--r--gdb/testsuite/gdb.base/solib2.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.base/solib2.c b/gdb/testsuite/gdb.base/solib2.c
index 2cd451321bd..8c69d8b273e 100644
--- a/gdb/testsuite/gdb.base/solib2.c
+++ b/gdb/testsuite/gdb.base/solib2.c
@@ -2,8 +2,18 @@
library, for use by the solib.exp testcase. It simply returns
the cube of its integer argument.
*/
+#ifdef __cplusplus
+extern "C" {
+#endif
+#ifdef PROTOTYPES
+int solib_main (int arg)
+#else
int solib_main (arg)
int arg;
+#endif
{
return arg*arg*arg;
}
+#ifdef __cplusplus
+}
+#endif