1 /*
2  * Copyright (C) 2004 Dizzy
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
17  */
18 #ifndef INCLUDED_VSNPRINTF_PROTOS
19 #define INCLUDED_VSNPRINTF_PROTOS
20 
21 #include <stdio.h>
22 #include "compat/vargs.h"
23 
24 #if !defined(HAVE_VSNPRINTF)
25 #ifdef HAVE__VSNPRINTF
26 #define vsnprintf(str,size,format,ap) _vsnprintf(str,size,format,ap)
27 #else
28 #if defined(_IOSTRG) && defined(_IOSTRG) && defined(HAVE_DOPRNT)
29 extern int vsnprintf(char *str, int size, const char *format, va_list ap);
30 #else
31 #error "Your system lacks ANY kind of vsnprintf support!"
32 #endif
33 #endif
34 #endif
35 
36 #endif /* INCLUDED_VSNPRINTF_PROTOS */
37