SmartAudio/package/avs/libsensory/files/wrapper/chk/vsprintf_chk.c

7 lines
191 B
C
Raw Normal View History

2018-07-13 01:31:50 +00:00
#include <stdio.h>
#include <stdarg.h>
#include "fortify.h"
int __vsprintf_chk(char *restrict s, int flag, size_t sn, const char *restrict fmt, va_list ap) {
return vsprintf(s, fmt, ap);
}