blob: fe7cb586681bfb873f1b7f32ca6ffbc5f7bcc800 [file] [log] [blame]
Joel Kitchinga1b15172020-03-12 18:15:34 +08001/* SPDX-License-Identifier: GPL-2.0-only */
2
3/**
Elyes Haouasbdd03c22024-05-27 11:20:07 +02004 * Note: This file is only for POSIX compatibility.
Joel Kitchinga1b15172020-03-12 18:15:34 +08005 */
6
7#ifndef STDIO_H
8#define STDIO_H
9
10#include <stddef.h>
11
12int snprintf(char *buf, size_t size, const char *fmt, ...);
13
14#endif /* STDIO_H */