summaryrefslogtreecommitdiff
path: root/src/wordexp/wordexp.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2020-08-15 13:34:07 -0400
committerJakob Kaivo <jkk@ung.org>2020-08-15 13:34:07 -0400
commit8662fdc44ca56b18bfd7266d27156d858b435973 (patch)
treef434af3d07c65cd548224fade0d8ff1fd6531469 /src/wordexp/wordexp.c
parent73b86f3cf5c14031ad8e786f75025b4f5a790993 (diff)
silence warnings
Diffstat (limited to 'src/wordexp/wordexp.c')
-rw-r--r--src/wordexp/wordexp.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wordexp/wordexp.c b/src/wordexp/wordexp.c
index 4a81db03..b981275a 100644
--- a/src/wordexp/wordexp.c
+++ b/src/wordexp/wordexp.c
@@ -3,6 +3,9 @@
int wordexp(const char *restrict words, wordexp_t *restrict pwordexp, int flags)
{
+ (void)words;
+ (void)pwordexp;
+ (void)flags;
return 0;
}