repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
revert between 56095 -> 55830 in arch
[AROS.git]
/
compiler
/
posixc
/
__dirdesc.h
blob
b14940dec3c0c48918cab75d79696074382cdb0a
1
#ifndef __DIRDESC_H
2
#define __DIRDESC_H
3
4
#include <dirent.h>
5
6
#include <aros/types/off_t.h>
7
8
struct
__dirdesc
9
{
10
int
fd
;
11
struct
dirent ent
;
12
off_t pos
;
13
void
*
priv
;
14
};
15
16
#endif
/* __DIRDESC_H */