]> sourceware.org Git - newlib-cygwin.git/commitdiff
* include/glob.h: Fix invalid use of 'restrict' error.
authorCorinna Vinschen <corinna@vinschen.de>
Thu, 28 Nov 2013 10:00:01 +0000 (10:00 +0000)
committerCorinna Vinschen <corinna@vinschen.de>
Thu, 28 Nov 2013 10:00:01 +0000 (10:00 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/include/glob.h

index 6155962809750862f4612166804d37540fe458d1..943d6b03269ff77d1ce202023ee4f716fb44f25b 100644 (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.
index 4ad200fd57ddae89ebdb80ff7b79f8191cbfa827..5f1b42050aeba1dc2167ba920523744060580c19 100644 (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
This page took 0.03109 seconds and 5 git commands to generate.