File: dev-ino.h

package info (click to toggle)
dc3dd 7.2.641-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 25,940 kB
  • ctags: 6,455
  • sloc: ansic: 29,499; sh: 6,778; perl: 1,468; yacc: 1,227; makefile: 152; python: 39; sed: 16
file content (13 lines) | stat: -rwxr-xr-x 148 bytes parent folder | download | duplicates (70)
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