From 2d67f772cb9e14a0ad6ac92f1eb072705aa1fb38 Mon Sep 17 00:00:00 2001 From: eadler Date: Tue, 20 Dec 2011 22:56:13 +0000 Subject: - Add restrict keyword to glob(3) PR: kern/161958 Submitted by: Henning Petersen Approved by: jilles MFC after: 3 days --- include/glob.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include/glob.h') diff --git a/include/glob.h b/include/glob.h index 351b6c4..073805b 100644 --- a/include/glob.h +++ b/include/glob.h @@ -98,7 +98,8 @@ typedef struct { #endif /* __BSD_VISIBLE */ __BEGIN_DECLS -int glob(const char *, int, int (*)(const char *, int), glob_t *); +int glob(const char * __restrict, int, + int (*)(const char *, int), glob_t * __restrict); void globfree(glob_t *); __END_DECLS -- cgit v1.1