blob: d59b9411ee23b1b24457f0db699eecb2fcb8753b [file] [log] [blame]
Joel Kitchinga1b15172020-03-12 18:15:34 +08001/* SPDX-License-Identifier: GPL-2.0-only */
2
3/**
4 * Note: This file is only for POSIX compatibility, and is meant to be
5 * chain-included via string.h.
6 */
7
8#ifndef STDIO_H
9#define STDIO_H
10
11#include <stddef.h>
12
13int snprintf(char *buf, size_t size, const char *fmt, ...);
14
15#endif /* STDIO_H */