1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/honeyd/vasprintf.h Tue Aug 28 18:35:30 2012 +0200 1.3 @@ -0,0 +1,21 @@ 1.4 +/* Like vsprintf but provides a pointer to malloc'd storage, which must 1.5 + be freed by the caller. 1.6 + Copyright (C) 1994, 2003 Free Software Foundation, Inc. 1.7 + 1.8 +This file is part of the libiberty library. 1.9 +Libiberty is free software; you can redistribute it and/or 1.10 +modify it under the terms of the GNU Library General Public 1.11 +License as published by the Free Software Foundation; either 1.12 +version 2 of the License, or (at your option) any later version. 1.13 + 1.14 +Libiberty is distributed in the hope that it will be useful, 1.15 +but WITHOUT ANY WARRANTY; without even the implied warranty of 1.16 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 1.17 +Library General Public License for more details. 1.18 + 1.19 +You should have received a copy of the GNU Library General Public 1.20 +License along with libiberty; see the file COPYING.LIB. If 1.21 +not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 1.22 +Boston, MA 02111-1307, USA. */ 1.23 + 1.24 +int vasprintf(char **, const char *, va_list);