From 8eca3fa11c02551ea74be2eae0892bd9958ae366 Mon Sep 17 00:00:00 2001 From: "Tim J. Robbins" Date: Thu, 26 Dec 2002 14:38:27 +0000 Subject: [PATCH] Add "restrict" qualifiers to the prototype for wordexp(). --- include/wordexp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wordexp.h b/include/wordexp.h index ae219b6a1eae..02adc856c493 100644 --- a/include/wordexp.h +++ b/include/wordexp.h @@ -68,7 +68,7 @@ typedef struct { #define WRDE_SYNTAX 6 /* shell syntax error */ __BEGIN_DECLS -int wordexp(const char *, wordexp_t *, int); +int wordexp(const char * __restrict, wordexp_t * __restrict, int); void wordfree(wordexp_t *); __END_DECLS