mirror of
https://github.com/coreutils/coreutils.git
synced 2025-01-09 17:43:23 +08: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
|