This is the mail archive of the cygwin-patches@cygwin.com mailing list for the Cygwin 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]

[PATCH] export asprintf and friends


This patch assumes that the asprintf.c change I submitted to newlib is also applied. (And no, it doesn't fix the problem I was having with glib and the printf functions, but I noticed this oversight -- and the newlib typo -- while doing that investigation)

2003-01-01 Charles Wilson <cwilson@ece.gatech.edu>

* cygwin.din: add asprintf and vasprintf, as
well as the reentrant versions and underscore
variants.

--Chuck
Index: cygwin.din
===================================================================
RCS file: /cvs/src/src/winsup/cygwin/cygwin.din,v
retrieving revision 1.72
diff -u -r1.72 cygwin.din
--- cygwin.din	6 Dec 2002 19:48:03 -0000	1.72
+++ cygwin.din	2 Jan 2003 02:40:17 -0000
@@ -50,6 +50,10 @@
 _asinh = asinh
 asinhf
 _asinhf = asinhf
+asprintf
+_asprintf = asprintf
+_asprintf_r
+asprintf_r = _asprintf_r
 atan
 _atan = atan
 atan2
@@ -943,6 +947,10 @@
 utmpname
 _utmpname = utmpname
 valloc
+vasprintf
+_vasprintf = vasprintf
+_vasprintf_r
+vasprintf_r = _vasprintf_r
 vfiprintf
 _vfiprintf = vfiprintf
 vfork

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