mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 10:53:16 +01:00
Added system call prototypes and posix glue for reading a directory. TODO: FS0 should implement the L4_IPC_TAG_READDIR ipc call.
9 lines
143 B
C
9 lines
143 B
C
#ifndef __TEST0_TESTS_H__
|
|
#define __TEST0_TESTS_H__
|
|
|
|
int shmtest(void);
|
|
int mmaptest(void);
|
|
int dirtest(void);
|
|
|
|
#endif /* __TEST0_TESTS_H__ */
|