~ubuntu-branches/ubuntu/feisty/findutils/feisty

« back to all changes in this revision

Viewing changes to gnulib/lib/dev-ino.h

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Metzler
  • Date: 2005-07-04 11:37:37 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050704113737-ll89ui8be35r0pir
Tags: 4.2.22-2
* Remove locatedb on purge. (Closes: #315343)
* revert regex-syntax back to emacs-re. (Closes: #315136) Future versions
  will allow to select this by commandline parameter.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef DEV_INO_H
 
2
# define DEV_INO_H 1
 
3
 
 
4
# include <sys/types.h>
 
5
# include <sys/stat.h>
 
6
 
 
7
struct dev_ino
 
8
{
 
9
  ino_t st_ino;
 
10
  dev_t st_dev;
 
11
};
 
12
 
 
13
#endif