summaryrefslogtreecommitdiff
path: root/lib/dev-ino.h
blob: 695d38c7bb71524c1b74746a4d4bec4eb2f70474 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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