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
Added missing properties.
[AROS.git]
/
compiler
/
clib
/
telldir.c
blob
18e2b30d15fb87c92ce2eee069511ec101e70e30
1
/*
2
Copyright © 1995-2012, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
#include
"__dirdesc.h"
7
8
/*****************************************************************************
9
10
NAME */
11
12
#include <dirent.h>
13
14
long
telldir
(
15
16
/* SYNOPSIS */
17
DIR
*
dir
)
18
19
/* FUNCTION
20
21
INPUTS
22
23
RESULT
24
25
NOTES
26
27
EXAMPLE
28
29
BUGS
30
31
SEE ALSO
32
33
INTERNALS
34
35
******************************************************************************/
36
{
37
return
dir
->
pos
;
38
}
39