repo.or.cz
/
coreboot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Documentation: Fix sphinx configuration
[coreboot.git]
/
src
/
include
/
stdio.h
blob
d59b9411ee23b1b24457f0db699eecb2fcb8753b
1
/* 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
13
int
snprintf
(
char
*
buf
,
size_t
size
,
const char
*
fmt
, ...);
14
15
#endif
/* STDIO_H */