blob: 428d0783797e8c1de918448673652b16122cb993 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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)
*/
|