aboutsummaryrefslogtreecommitdiff
path: root/include/stdio.h
blob: e23fbe5ee52b6f2abe0aebd7dc47717ac5c52b92 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include_next <stdio.h>

#ifndef LIBCRYPTOCOMPAT_STDIO_H
#define LIBCRYPTOCOMPAT_STDIO_H

#ifdef NO_ASPRINTF
int vasprintf(char **str, const char *fmt, va_list ap);
int asprintf(char **str, const char *fmt, ...);
#endif

#endif