rm_/lib/dev-ino.h

14 lines
148 B
C
Raw Normal View History

2020-09-02 16:47:03 +08:00
#ifndef DEV_INO_H
# define DEV_INO_H 1
# include <sys/types.h>
# include <sys/stat.h>
struct dev_ino
{
ino_t st_ino;
dev_t st_dev;
};
#endif