* include/glob.h: Fix invalid use of 'restrict' error.

This commit is contained in:
Corinna Vinschen 2013-11-28 10:00:01 +00:00
parent 2d50094276
commit f8b02da153
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2013-11-28 Alexey Pavlov <alexpux@gmail.com>
* include/glob.h: Fix invalid use of 'restrict' error.
2013-11-27 Corinna Vinschen <corinna@vinschen.de>
* syscalls.cc (try_to_bin): Enhance debug output in case reopen fails.

View File

@ -103,7 +103,7 @@ __BEGIN_DECLS
# define DLLEXPORT __declspec(dllimport)
#endif
int DLLEXPORT glob (const char __restrict *, int, int (*)(const char *, int), glob_t *__restrict);
int DLLEXPORT glob (const char *__restrict , int, int (*)(const char *, int), glob_t *__restrict);
void DLLEXPORT globfree (glob_t *);
int DLLEXPORT glob_pattern_p (const char *, int);
__END_DECLS