mirror of
https://github.com/drasko/codezero.git
synced 2026-01-14 20:03:16 +01:00
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
|