mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 02:43:15 +01:00
16 lines
274 B
C
16 lines
274 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);
|
|
void exectest(void);
|
|
|
|
#endif /* __TEST0_TESTS_H__ */
|