mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
17 lines
267 B
C
17 lines
267 B
C
/**
|
|
* @ingroup kernel
|
|
* @{
|
|
* @file io.h
|
|
* @brief prototypes for system io functions
|
|
* @author INRIA
|
|
* @author Oliver Hahm <oliver.hahm@inria.fr>
|
|
*/
|
|
|
|
#ifndef IO_H
|
|
#define IO_H
|
|
|
|
int fw_puts(char *data, int count);
|
|
|
|
/** @} */
|
|
#endif /* IO_H */
|