device: Consider fw_config probing in `is_dev_enabled()`
[coreboot.git] / src / include / stdio.h
blobd59b9411ee23b1b24457f0db699eecb2fcb8753b
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 /**
4 * Note: This file is only for POSIX compatibility, and is meant to be
5 * chain-included via string.h.
6 */
8 #ifndef STDIO_H
9 #define STDIO_H
11 #include <stddef.h>
13 int snprintf(char *buf, size_t size, const char *fmt, ...);
15 #endif /* STDIO_H */