diff options
author | Ulrich Drepper <drepper@gmail.com> | 2012-01-07 23:57:22 -0500 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2012-01-07 23:57:22 -0500 |
commit | a784e502472fb3a1afa4d01a47c66b52d23e00f6 (patch) | |
tree | 5ebaa084119dcffe41671a62e2e799b172c57d24 /posix/fnmatch.h | |
parent | 33808bf1164be2e7c8535bdd5ac398c75c33ed49 (diff) | |
download | glibc-a784e502472fb3a1afa4d01a47c66b52d23e00f6.tar glibc-a784e502472fb3a1afa4d01a47c66b52d23e00f6.tar.gz glibc-a784e502472fb3a1afa4d01a47c66b52d23e00f6.tar.bz2 glibc-a784e502472fb3a1afa4d01a47c66b52d23e00f6.zip |
Remove pre-ISO C support
No more __const.
Diffstat (limited to 'posix/fnmatch.h')
-rw-r--r-- | posix/fnmatch.h | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/posix/fnmatch.h b/posix/fnmatch.h index aefb007fba..7d1a8f5e7f 100644 --- a/posix/fnmatch.h +++ b/posix/fnmatch.h @@ -1,4 +1,5 @@ -/* Copyright (C) 1991-93,96,97,98,99,2001,2004 Free Software Foundation, Inc. +/* Copyright (C) 1991-93,1996-1999,2001,2004,2012 + Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -23,14 +24,6 @@ extern "C" { #endif -#ifndef const -# if (defined __STDC__ && __STDC__) || defined __cplusplus -# define __const const -# else -# define __const -# endif -#endif - /* We #undef these before defining them because some losing systems (HP-UX A.08.07 for example) define these in <unistd.h>. */ #undef FNM_PATHNAME @@ -62,8 +55,7 @@ extern "C" { /* Match NAME against the filename pattern PATTERN, returning zero if it matches, FNM_NOMATCH if not. */ -extern int fnmatch (__const char *__pattern, __const char *__name, - int __flags); +extern int fnmatch (const char *__pattern, const char *__name, int __flags); #ifdef __cplusplus } |