Tizen 2.0 Release
[external/tizen-coreutils.git] / lib / root-dev-ino.c
1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /* root-dev-ino.c -- get the device and inode numbers for `/'.
4    Copyright (C) 2003, 2005, 2006 Free Software Foundation, Inc.
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2, or (at your option)
9    any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software Foundation,
18    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
19
20 /* Written by Jim Meyering. */
21
22 #include <config.h>
23
24 #include "root-dev-ino.h"
25
26 #include <stdlib.h>
27
28 /* Call lstat to get the device and inode numbers for `/'.
29    Upon failure, return NULL.  Otherwise, set the members of
30    *ROOT_D_I accordingly and return ROOT_D_I.  */
31 struct dev_ino *
32 get_root_dev_ino (struct dev_ino *root_d_i)
33 {
34   struct stat statbuf;
35   if (lstat ("/", &statbuf))
36     return NULL;
37   root_d_i->st_ino = statbuf.st_ino;
38   root_d_i->st_dev = statbuf.st_dev;
39   return root_d_i;
40 }