Add "restrict" qualifiers to the prototype for wordexp().

This commit is contained in:
Tim J. Robbins 2002-12-26 14:38:27 +00:00
parent faea1495bf
commit 8eca3fa11c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=108290

View File

@ -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