X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fisdir.c;h=c1430cc605dd3813cb2010ef9a48b196bc8b89be;hb=6f730e7ae5225bf9eb36554d94805b97a72784bd;hp=01cf8d5e4af280c4807eb06097e22120994a70ad;hpb=89f2b4892655a929a506eff123c9126a88e2c8eb;p=gnulib.git diff --git a/lib/isdir.c b/lib/isdir.c index 01cf8d5e4..c1430cc60 100644 --- a/lib/isdir.c +++ b/lib/isdir.c @@ -1,10 +1,11 @@ /* isdir.c -- determine whether a directory exists - Copyright (C) 1990, 1998 Free Software Foundation, Inc. - This program is free software; you can redistribute it and/or modify + Copyright (C) 1990, 1998, 2006, 2009-2010 Free Software Foundation, Inc. + + 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. + the Free Software Foundation; either version 3 of the License, 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 @@ -12,27 +13,17 @@ 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + along with this program. If not, see . */ + +#include -#if HAVE_CONFIG_H -# include -#endif +#include "isdir.h" #include #include -#if STAT_MACROS_BROKEN -# undef S_ISDIR -#endif - -#if !defined S_ISDIR && defined S_IFDIR -# define S_ISDIR(Mode) (((Mode) & S_IFMT) == S_IFDIR) -#endif - /* If PATH is an existing directory or symbolic link to a directory, return nonzero, else 0. */ - int isdir (const char *path) {