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