mirror of
https://gitlab.com/openconnect/ocserv.git
synced 2026-02-10 16:57:00 +08:00
14 lines
222 B
C
14 lines
222 B
C
#ifndef VASPRINTF_H
|
|
#define VASPRINTF_H
|
|
#include <config.h>
|
|
#include <string.h>
|
|
|
|
#ifndef HAVE_VASPRINTF
|
|
|
|
int _ocserv_vasprintf(char **strp, const char *fmt, va_list ap);
|
|
#define vasprintf _ocserv_vasprintf
|
|
|
|
#endif
|
|
|
|
#endif
|