source: mainline/libc/include/io/stream.h@ 79460ae

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 79460ae was 79460ae, checked in by Josef Cejka <malyzelenyhnus@…>, 19 years ago

Basic support for console driver.
Does not provide separate screens yet.
TODO fix many unhandled states.

  • Property mode set to 100644
File size: 224 bytes
Line 
1#include <libarch/types.h>
2#include <unistd.h>
3
4#define EMFILE -17
5
6typedef int fd_t;
7
8
9typedef ssize_t (*pwritefn_t)(void *, const void *, size_t);
10typedef char (*preadfn_t)(void);
11
12fd_t open(const char *fname, int flags);
Note: See TracBrowser for help on using the repository browser.