xref: /dflybsd-src/contrib/cvs-1.12/lib/dev-ino.h (revision f1e3af6c0d9fb009456c1ad7a10c323acbf7022f)
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
14