mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 02:43:15 +01:00
15 lines
253 B
C
15 lines
253 B
C
#ifndef __TEST0_TESTS_H__
|
|
#define __TEST0_TESTS_H__
|
|
|
|
#define __TASKNAME__ "test0"
|
|
|
|
int shmtest(void);
|
|
int forktest(void);
|
|
int mmaptest(void);
|
|
int dirtest(void);
|
|
int fileio(void);
|
|
int fileio2(void);
|
|
int clonetest(void);
|
|
|
|
#endif /* __TEST0_TESTS_H__ */
|