summaryrefslogtreecommitdiff
path: root/lib/isdir.c
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2009-12-26 09:56:23 +0100
committerJim Meyering <meyering@redhat.com>2009-12-26 10:56:00 +0100
commit8fedd05841d5e693cd8fb5266a7963bc075c45f6 (patch)
treef11d7477e67fa2c9caf25cc8ab7c1c91875d366c /lib/isdir.c
parent4b93a2579fb567b9fbbeb24439770d814dac95cd (diff)
downloadgnulib-8fedd05841d5e693cd8fb5266a7963bc075c45f6.tar.gz
isdir: clean up, since at least grep still uses it
* lib/isdir.c: Include "isdir.h". (S_ISDIR): Remove now-unneeded definition. * modules/isdir (Files): Add lib/isdir.h. * lib/isdir.h: New file, with declaration. * m4/isdir.m4: Remove file -- unneeded.
Diffstat (limited to 'lib/isdir.c')
-rw-r--r--lib/isdir.c13
1 files changed, 3 insertions, 10 deletions
diff --git a/lib/isdir.c b/lib/isdir.c
index 0f9aec2f9c..19a3f7d9b1 100644
--- a/lib/isdir.c
+++ b/lib/isdir.c
@@ -1,6 +1,6 @@
/* isdir.c -- determine whether a directory exists
- Copyright (C) 1990, 1998, 2006 Free Software Foundation, Inc.
+ Copyright (C) 1990, 1998, 2006, 2009 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
@@ -17,20 +17,13 @@
#include <config.h>
+#include "isdir.h"
+
#include <sys/types.h>
#include <sys/stat.h>
-#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)
{