From: Eric Blake Date: Thu, 29 Jun 2006 22:17:41 +0000 (+0000) Subject: * stat_.h: New file. X-Git-Tag: cvs-readonly~2289 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=c5cf6f9b5ed2a68554dc6a8ef07949b8131b2bf4;p=gnulib.git * stat_.h: New file. --- diff --git a/lib/ChangeLog b/lib/ChangeLog index 9a346a716..64b977e5e 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,7 @@ +2006-06-29 Eric Blake + + * stat_.h: New file. + 2006-06-29 Derek R. Price * strftime.c: Assume strftime() exists. diff --git a/lib/stat_.h b/lib/stat_.h new file mode 100644 index 000000000..7f290cefa --- /dev/null +++ b/lib/stat_.h @@ -0,0 +1,42 @@ +/* Provide a complete sys/stat header file. + Copyright (C) 2006 Free Software Foundation, Inc. + Written by Eric Blake. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2, or (at your option) + any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software Foundation, + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + +#ifndef _gl_SYS_STAT_H +#define _gl_SYS_STAT_H + +/* This file is supposed to be used on platforms where is + incomplete. It is intended to provide definitions and prototypes + needed by an application. Start with what the system provides. */ +#include @FULL_PATH_SYS_STAT_H@ + +/* mingw does not support symlinks, therefore it does not have lstat. But + without links, stat does just fine. */ +#if ! HAVE_FUNC_LSTAT +# define lstat stat +#endif + +/* mingw's _mkdir() function has 1 argument, but we pass 2 arguments. + Additionally, it declares _mkdir (and depending on compile flags, an + alias mkdir), only in the nonstandard io.h. */ +#if ! HAVE_DECL_MKDIR && HAVE_IO_H +# include +static int rpl_mkdir (char const *name, mode_t mode) { return _mkdir (name); } +# define mkdir rpl_mkdir +#endif + +#endif /* _gl_SYS_STAT_H */