mirror of
https://git.savannah.gnu.org/git/coreutils.git
synced 2025-09-10 07:59:52 +02:00
11 lines
100 B
C
11 lines
100 B
C
#ifndef DEV_INO_H
|
|
# define DEV_INO_H 1
|
|
|
|
struct dev_ino
|
|
{
|
|
ino_t st_ino;
|
|
dev_t st_dev;
|
|
};
|
|
|
|
#endif
|