diff options
author | Nathanael Nerode <neroden@gcc.gnu.org> | 2003-10-24 02:28:37 +0000 |
---|---|---|
committer | Nathanael Nerode <neroden@gcc.gnu.org> | 2003-10-24 02:28:37 +0000 |
commit | b4e2d709cf1bc8fa1332b4e9033d066faddde31c (patch) | |
tree | 88b1021b4a595fc67a1bc99941b3db47b9dc7dcb /gcc/ada/adadecode.h | |
parent | 1b24cd79cbe08c9391202b83b39ec0d8a6e92800 (diff) | |
download | gcc-b4e2d709cf1bc8fa1332b4e9033d066faddde31c.zip gcc-b4e2d709cf1bc8fa1332b4e9033d066faddde31c.tar.gz gcc-b4e2d709cf1bc8fa1332b4e9033d066faddde31c.tar.bz2 |
adadecode.h, [...]: Convert to ISO C90 declarations and definitions.
* adadecode.h, atree.h, elists.h, namet.h, nlists.h, raise.h,
stringt.h: Convert to ISO C90 declarations and definitions.
From-SVN: r72877
Diffstat (limited to 'gcc/ada/adadecode.h')
-rw-r--r-- | gcc/ada/adadecode.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/adadecode.h b/gcc/ada/adadecode.h index 9ba49fa..73d8f3e 100644 --- a/gcc/ada/adadecode.h +++ b/gcc/ada/adadecode.h @@ -42,9 +42,9 @@ verbose information). VERBOSE is nonzero if more information about the entity is to be added at the end of the Ada name and surrounded by ( and ). */ -extern void __gnat_decode PARAMS ((const char *, char *, int)); +extern void __gnat_decode (const char *, char *, int); /* ada_demangle is added for COMPATIBILITY ONLY. It has the name of the function used in the binutils and GDB. Always consider using __gnat_decode instead of ada_demangle. Caller must free the pointer returned. */ -extern char *ada_demangle PARAMS ((const char *)); +extern char *ada_demangle (const char *); |