11 lines
134 B
C
11 lines
134 B
C
|
#ifndef ISO_H
|
||
|
#define ISO_H
|
||
|
|
||
|
#include <k/types.h>
|
||
|
|
||
|
#define O_RDONLY 0
|
||
|
|
||
|
int open(const char *path, int flags);
|
||
|
|
||
|
#endif /* !ISO_H */
|