aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim J. Robbins <tjr@FreeBSD.org>2002-12-26 14:38:27 +0000
committerTim J. Robbins <tjr@FreeBSD.org>2002-12-26 14:38:27 +0000
commit8eca3fa11c02551ea74be2eae0892bd9958ae366 (patch)
treefb961f4a41a505f50b6560b6401656f2ce558d70
parentfaea1495bf19ed23bfec20c5c3257759d4e0e9eb (diff)
downloadsrc-8eca3fa11c02551ea74be2eae0892bd9958ae366.tar.gz
src-8eca3fa11c02551ea74be2eae0892bd9958ae366.zip
Add "restrict" qualifiers to the prototype for wordexp().
Notes
Notes: svn path=/head/; revision=108290
-rw-r--r--include/wordexp.h2
1 files changed, 1 insertions, 1 deletions
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