/* librist. Copyright © 2019 SipRadius LLC. All right reserved. * Author: Sergio Ammirata, Ph.D. * * SPDX-License-Identifier: BSD-2-Clause */ #ifndef __STDIO_SHIM_H #define __STDIO_SHIM_H #include "common/attributes.h" #include #include #ifdef _WIN32 RIST_PRIV int vasprintf(char** strp, const char* fmt, va_list ap); RIST_PRIV int asprintf(char** strp, const char* fmt, ...); #endif #endif