(read_utmp): Use the new definitions.
[gnulib.git] / lib / xstat.in
1 /* @IGNORE@ -*- c -*- */
2 /* @IGNORE@ This file is a template from which both stat.c and lstat.c
3    @IGNORE@ are generated. */
4 /* Work around the bug in some systems whereby @xstat@ succeeds when
5    given the zero-length file name argument.  The @xstat@ from SunOS4.1.4
6    has this bug.
7    Copyright (C) 1997, 1998 Free Software Foundation, Inc.
8
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2, or (at your option)
12    any later version.
13
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software Foundation,
21    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
22
23 /* written by Jim Meyering */
24
25 #include <config.h>
26
27 #include <sys/types.h>
28 #include <sys/stat.h>
29 #include <errno.h>
30 #ifndef errno
31 extern int errno;
32 #endif
33
34 /* This is a wrapper for @xstat@(2).
35    If FILE is the empty string, fail with errno == ENOENT.
36    Otherwise, return the result of calling the real @xstat@.
37
38    This works around the bug in some systems whereby @xstat@ succeeds when
39    given the zero-length file name argument.  The @xstat@ from SunOS4.1.4
40    has this bug.  */
41
42 int
43 rpl_@xstat@ (const char *file, struct stat *sbuf)
44 {
45   if (file && *file == 0)
46     {
47       errno = ENOENT;
48       return -1;
49     }
50
51   return @xstat@ (file, sbuf);
52 }