1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

sys: fmt: add write() declaration (work around broken unistd.h)

This commit is contained in:
Kaspar Schleiser 2015-10-29 13:22:50 +01:00
parent de52225c70
commit 39bb99e55d

View File

@ -18,6 +18,9 @@
#include <stdint.h>
#include <unistd.h>
/* work around broken sys/posix/unistd.h */
ssize_t write(int fildes, const void *buf, size_t nbyte);
#include "div.h"
#include "fmt.h"