diff options
author | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-22 20:03:29 +0000 |
---|---|---|
committer | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-22 20:03:29 +0000 |
commit | 98b6fc70cac3a41dedfc45e5f84bf7f2f71e3092 (patch) | |
tree | 4668c0ff40f185a82c1b9c01b0388f432c6cf685 /libiberty/vsprintf.c | |
parent | 9ac60e098d7032c8613d05b9d29816869475e52d (diff) | |
download | gcc-98b6fc70cac3a41dedfc45e5f84bf7f2f71e3092.tar.gz |
* Makefile.in (TESTLIB): New. This library is for future
testsuites.
(CFILES, REQUIRED_OFILES, CONFIGURED_OFILES): Re-alphabetize,
break down by letter.
(REQUIRED_OFILES): List long-to-compile files first.
(maint-deps): New, target for updating dependencies.
(dependencies): Update.
* maint-tool: Add dependency-generating option.
* configure.in: Check for _doprnt even if we're not providing it.
* configure: Regenerate.
* _doprnt.c: Modifications to allow compiling on any platform.
* copysign.c: Likewise.
* putenv.c: Likewise.
* setenv.c: Likewise.
* vsprintf.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@49090 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty/vsprintf.c')
-rw-r--r-- | libiberty/vsprintf.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libiberty/vsprintf.c b/libiberty/vsprintf.c index bf0760cf6d3..b69e9bc9ca6 100644 --- a/libiberty/vsprintf.c +++ b/libiberty/vsprintf.c @@ -3,7 +3,7 @@ implementations of stdio; newer ones should already have vsprintf. Written by Per Bothner of Cygnus Support. Based on libg++'s "form" (written by Doug Lea; dl@rocky.oswego.edu). - Copyright (C) 1991, 1995 Free Software Foundation, Inc. + Copyright (C) 1991, 1995, 2002 Free Software Foundation, Inc. This file is part of the libiberty library. This library is free software; you can redistribute it and/or modify it under the @@ -31,6 +31,8 @@ the executable file might be covered by the GNU General Public License. */ #include <ansidecl.h> #undef vsprintf +#if defined _IOSTRG && defined _IOWRT + int vsprintf (buf, format, ap) char *buf; @@ -53,3 +55,5 @@ vsprintf (buf, format, ap) return ret; } + +#endif |