xref: /dflybsd-src/contrib/cvs-1.12/lib/lstat.h (revision 86d7f5d305c6adaa56ff4582ece9859d73106103)
186d7f5d3SJohn Marino /* Retrieving information about files.
286d7f5d3SJohn Marino    Copyright (C) 2005 Free Software Foundation, Inc.
386d7f5d3SJohn Marino 
486d7f5d3SJohn Marino    This program is free software; you can redistribute it and/or modify
586d7f5d3SJohn Marino    it under the terms of the GNU General Public License as published by
686d7f5d3SJohn Marino    the Free Software Foundation; either version 2, or (at your option)
786d7f5d3SJohn Marino    any later version.
886d7f5d3SJohn Marino 
986d7f5d3SJohn Marino    This program is distributed in the hope that it will be useful,
1086d7f5d3SJohn Marino    but WITHOUT ANY WARRANTY; without even the implied warranty of
1186d7f5d3SJohn Marino    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1286d7f5d3SJohn Marino    GNU General Public License for more details.
1386d7f5d3SJohn Marino 
1486d7f5d3SJohn Marino    You should have received a copy of the GNU General Public License
1586d7f5d3SJohn Marino    along with this program; if not, write to the Free Software Foundation,
1686d7f5d3SJohn Marino    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
1786d7f5d3SJohn Marino 
1886d7f5d3SJohn Marino #include <sys/stat.h>
1986d7f5d3SJohn Marino 
2086d7f5d3SJohn Marino #if !LSTAT_FOLLOWS_SLASHED_SYMLINK
2186d7f5d3SJohn Marino extern int rpl_lstat (const char *name, struct stat *buf);
2286d7f5d3SJohn Marino # undef lstat
2386d7f5d3SJohn Marino # define lstat rpl_lstat
2486d7f5d3SJohn Marino #endif
25