* include/glob.h: Fix invalid use of 'restrict' error.
This commit is contained in:
parent
2d50094276
commit
f8b02da153
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue