diff options
author | Christopher Faylor <me@cgf.cx> | 2008-04-07 18:45:59 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2008-04-07 18:45:59 +0000 |
commit | b13e6864f5237d8c21874a8960e85169f7190348 (patch) | |
tree | 551f91a2b2194ec0d1035ea4d23dab641a39d4ed /winsup/cygwin/glob.cc | |
parent | f471ca85e17ea1b4fdc317527cfdba3e4463e359 (diff) | |
download | cygnal-b13e6864f5237d8c21874a8960e85169f7190348.tar.gz cygnal-b13e6864f5237d8c21874a8960e85169f7190348.tar.bz2 cygnal-b13e6864f5237d8c21874a8960e85169f7190348.zip |
Remove unneeded header files from source files throughout.
Diffstat (limited to 'winsup/cygwin/glob.cc')
-rw-r--r-- | winsup/cygwin/glob.cc | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/winsup/cygwin/glob.cc b/winsup/cygwin/glob.cc index b4c512c43..6534249a7 100644 --- a/winsup/cygwin/glob.cc +++ b/winsup/cygwin/glob.cc @@ -33,7 +33,6 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)glob.c 8.3 (Berkeley) 10/13/93"; #endif /* LIBC_SCCS and not lint */ -#include <sys/cdefs.h> #ifdef __CYGWIN __FBSDID("$FreeBSD: /repoman/r/ncvs/src/lib/libc/gen/glob.c,v 1.25 2006/06/05 18:22:13 delphij Exp $"); #endif @@ -75,19 +74,12 @@ __FBSDID("$FreeBSD: /repoman/r/ncvs/src/lib/libc/gen/glob.c,v 1.25 2006/06/05 18 #include "winsup.h" -#include <sys/param.h> -#include <sys/stat.h> #include <ctype.h> #include <dirent.h> -#include <errno.h> #include <glob.h> -#include <limits.h> #include <pwd.h> -#include <stdint.h> -#include <stdio.h> #include <stdlib.h> -#include <string.h> #include <unistd.h> #include <wchar.h> |