xref: /aosp_15_r20/external/coreboot/src/include/stdio.h (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 /**
4  * Note: This file is only for POSIX compatibility.
5  */
6 
7 #ifndef STDIO_H
8 #define STDIO_H
9 
10 #include <stddef.h>
11 
12 int snprintf(char *buf, size_t size, const char *fmt, ...);
13 
14 #endif /* STDIO_H */
15