]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - gdb/testsuite/gdb.base/whatis.c
gdb.base/{exprs,ptype,ptype1,setvar,whatis}.c C++ify
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / whatis.c
index 11c84d291cdd8de94708a8ff288485190bcf77fd..743cb61abfeb268ff74d2d924e54fe51dac48de9 100644 (file)
@@ -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