Commit 825c5408 by David Edelsohn Committed by David Edelsohn

collect2.c (ldgetname): Expand declaration to prototype.

        * collect2.c (ldgetname): Expand declaration to prototype.
        * read-rtl.c (atoll): Add prototype.

From-SVN: r61489
parent 77d187bc
2003-01-19 David Edelsohn <edelsohn@gnu.org>
* collect2.c (ldgetname): Expand declaration to prototype.
* read-rtl.c (atoll): Add prototype.
2003-01-19 Alexandre Oliva <aoliva@redhat.com>
* config.gcc (mips64*-*-linux*): Added.
......
......@@ -2720,7 +2720,7 @@ ignore_library (name)
}
#endif /* COLLECT_EXPORT_LIST */
extern char *ldgetname ();
extern char *ldgetname PARAMS ((struct ldfile *, void *));
/* COFF version to scan the name list of the loaded program for
the symbols g++ uses for static constructors and destructors.
......
......@@ -368,6 +368,8 @@ read_string (ob, infile, star_if_braced)
/* Provide a version of a function to read a long long if the system does
not provide one. */
#if HOST_BITS_PER_WIDE_INT > HOST_BITS_PER_LONG && !defined(HAVE_ATOLL) && !defined(HAVE_ATOQ)
HOST_WIDE_INT atoll PARAMS ((const char *));
HOST_WIDE_INT
atoll (p)
const char *p;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment