This is the mail archive of the newlib@sourceware.org mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] Add missing declaration for vsiprintf


Patch applied. Thanks.

-- Jeff J.

Kazunori Asayama wrote:
When testing iprintf family implementation for SPU, I found that there
is no declaration for vsiprintf in the public headers.

Here is a patch to add the declaration.

Jeff, could you apply the patch ?

2007-02-20 Kazunori Asayama <asayama@sm.sony.co.jp>

* libc/include/stdio.h: Add declaration for vsiprintf.

----
Index: newlib/newlib/libc/include/stdio.h
===================================================================
--- newlib.orig/newlib/libc/include/stdio.h
+++ newlib/newlib/libc/include/stdio.h
@@ -251,6 +251,7 @@ int	_EXFUN(vfiprintf, (FILE *, const cha
 int	_EXFUN(vfiscanf, (FILE *, const char *, __VALIST));
 int	_EXFUN(vfscanf, (FILE *, const char *, __VALIST));
 int	_EXFUN(viprintf, (const char *, __VALIST));
+int	_EXFUN(vsiprintf, (char *, const char *, __VALIST));
 int	_EXFUN(viscanf, (const char *, __VALIST));
 int	_EXFUN(vscanf, (const char *, __VALIST));
 int	_EXFUN(vsiscanf, (const char *, const char *, __VALIST));


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]