repo.or.cz
/
gnulib.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
af_alg: Improve comments.
[gnulib.git]
/
lib
/
dev-ino.h
blob
695d38c7bb71524c1b74746a4d4bec4eb2f70474
1
#ifndef DEV_INO_H
2
# define DEV_INO_H 1
3
4
# include <sys/types.h>
5
# include <sys/stat.h>
6
7
struct
dev_ino
8
{
9
ino_t st_ino
;
10
dev_t st_dev
;
11
};
12
13
#endif