summaryrefslogtreecommitdiff
path: root/src/wordexp/wordexp.c
blob: 412449cbdeae7a408d19808223e945a65b649de4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#if 0

#include <wordexp.h>

int wordexp(const char *restrict words, wordexp_t *restrict pwordexp, int flags)
{
	(void)words;
	(void)pwordexp;
	(void)flags;
	return 0;
}

/*
POSIX(2)
*/


#endif