mirror of
https://github.com/drasko/codezero.git
synced 2026-03-29 08:19:03 +02: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
|