~ubuntu-branches/ubuntu/precise/parted/precise

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Otavio Salvador
  • Date: 2010-02-06 16:39:19 UTC
  • mfrom: (1.1.5 upstream)
  • mto: (7.3.2 experimental)
  • mto: This revision was merged to the branch mainline in revision 48.
  • Revision ID: james.westby@ubuntu.com-20100206163919-nsxr2vtchk0ecabf
Tags: upstream-2.1
ImportĀ upstreamĀ versionĀ 2.1

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