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