summaryrefslogtreecommitdiff
path: root/src/wordexp/wordexp.c
blob: 4a81db037c70036142da816c05ace3817d3fa8f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "sys/types.h"
#include <wordexp.h>

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

/*
POSIX(2)
*/