mirror of
https://github.com/drasko/codezero.git
synced 2026-01-13 19:33:15 +01:00
Added system call prototypes and posix glue for reading a directory. TODO: FS0 should implement the L4_IPC_TAG_READDIR ipc call.
8 lines
167 B
C
8 lines
167 B
C
#ifndef __OS_READDIR_H__
|
|
#define __OS_READDIR_H__
|
|
|
|
/* Any os syscall related data that is not in posix */
|
|
ssize_t os_readdir(int fd, void *buf, size_t count);
|
|
|
|
#endif
|