aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.base
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/testsuite/gdb.base')
-rw-r--r--gdb/testsuite/gdb.base/exprs.c4
-rw-r--r--gdb/testsuite/gdb.base/ptype.c8
-rw-r--r--gdb/testsuite/gdb.base/ptype1.c2
-rw-r--r--gdb/testsuite/gdb.base/setvar.c4
-rw-r--r--gdb/testsuite/gdb.base/whatis.c4
5 files changed, 11 insertions, 11 deletions
diff --git a/gdb/testsuite/gdb.base/exprs.c b/gdb/testsuite/gdb.base/exprs.c
index cd605f3..195b88e 100644
--- a/gdb/testsuite/gdb.base/exprs.c
+++ b/gdb/testsuite/gdb.base/exprs.c
@@ -156,7 +156,7 @@ double v_double_func () { return (0.0); }
struct link {
struct link *next;
#ifdef __STDC__
- struct link *(*linkfunc) (struct link *this, int flags);
+ struct link *(*linkfunc) (struct link *self, int flags);
#else
struct link *(*linkfunc) ();
#endif
@@ -166,7 +166,7 @@ struct link {
union tu_link {
struct link *next;
#ifdef __STDC__
- struct link *(*linkfunc) (struct link *this, int flags);
+ struct link *(*linkfunc) (struct link *self, int flags);
#else
struct link *(*linkfunc) ();
#endif
diff --git a/gdb/testsuite/gdb.base/ptype.c b/gdb/testsuite/gdb.base/ptype.c
index 4148da7..6d12c2a 100644
--- a/gdb/testsuite/gdb.base/ptype.c
+++ b/gdb/testsuite/gdb.base/ptype.c
@@ -168,7 +168,7 @@ double v_double_func () { return (0.0); }
struct link {
struct link *next;
#ifdef __STDC__
- struct link *(*linkfunc) (struct link *this, int flags);
+ struct link *(*linkfunc) (struct link *self, int flags);
#else
struct link *(*linkfunc) ();
#endif
@@ -178,7 +178,7 @@ struct link {
union tu_link {
struct link *next;
#ifdef __STDC__
- struct link *(*linkfunc) (struct link *this, int flags);
+ struct link *(*linkfunc) (struct link *self, int flags);
#else
struct link *(*linkfunc) ();
#endif
@@ -269,11 +269,11 @@ func_type v_func_type;
/***********/
-extern char charfoo ();
+extern char charfoo (int);
typedef int foo;
-foo intfoo (afoo)
+foo intfoo (int afoo)
{
charfoo (afoo);
return (afoo * 2);
diff --git a/gdb/testsuite/gdb.base/ptype1.c b/gdb/testsuite/gdb.base/ptype1.c
index 2587150..43ab056 100644
--- a/gdb/testsuite/gdb.base/ptype1.c
+++ b/gdb/testsuite/gdb.base/ptype1.c
@@ -1,6 +1,6 @@
typedef char foo;
-foo charfoo (afoo)
+foo charfoo (int afoo)
{
return (afoo * 2);
}
diff --git a/gdb/testsuite/gdb.base/setvar.c b/gdb/testsuite/gdb.base/setvar.c
index 1b8d808..415eb6f 100644
--- a/gdb/testsuite/gdb.base/setvar.c
+++ b/gdb/testsuite/gdb.base/setvar.c
@@ -161,7 +161,7 @@ double v_double_func () { return (0.0); }
struct link {
struct link *next;
#ifdef __STDC__
- struct link *(*linkfunc) (struct link *this, int flags);
+ struct link *(*linkfunc) (struct link *self, int flags);
#else
struct link *(*linkfunc) ();
#endif
@@ -171,7 +171,7 @@ struct link {
union tu_link {
struct link *next;
#ifdef __STDC__
- struct link *(*linkfunc) (struct link *this, int flags);
+ struct link *(*linkfunc) (struct link *self, int flags);
#else
struct link *(*linkfunc) ();
#endif
diff --git a/gdb/testsuite/gdb.base/whatis.c b/gdb/testsuite/gdb.base/whatis.c
index 11c84d2..743cb61 100644
--- a/gdb/testsuite/gdb.base/whatis.c
+++ b/gdb/testsuite/gdb.base/whatis.c
@@ -207,7 +207,7 @@ double v_double_func () { return (0.0); }
struct link {
struct link *next;
#ifdef __STDC__
- struct link *(*linkfunc) (struct link *this, int flags);
+ struct link *(*linkfunc) (struct link *self, int flags);
#else
struct link *(*linkfunc) ();
#endif
@@ -217,7 +217,7 @@ struct link {
union tu_link {
struct link *next;
#ifdef __STDC__
- struct link *(*linkfunc) (struct link *this, int flags);
+ struct link *(*linkfunc) (struct link *self, int flags);
#else
struct link *(*linkfunc) ();
#endif