9
0
Fork 0
barebox/include/asm-linux/arch-linux/linux.h

16 lines
503 B
C
Raw Normal View History

2007-07-05 16:01:42 +00:00
#ifndef __ASM_ARCH_LINUX_H
#define __ASM_ARCH_LINUX_H
int linux_register_device(const char *name, void *start, void *end);
int tap_alloc(char *dev);
uint64_t linux_get_time(void);
int linux_read(int fd, void *buf, size_t count);
int linux_read_nonblock(int fd, void *buf, size_t count);
ssize_t linux_write(int fd, const void *buf, size_t count);
off_t linux_lseek(int fildes, off_t offset);
2007-07-05 16:01:51 +00:00
int linux_getc (void);
void linux_putc (const char c);
int linux_tstc(void);
2007-07-05 16:01:42 +00:00
#endif /* __ASM_ARCH_LINUX_H */