summaryrefslogtreecommitdiff
path: root/src/stdlib/getsubopt.c
blob: aff17828e2c80945f21f9a0c10a5cb065aac7e3c (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stdlib.h>

int getsubopt(char ** optionp, char * const * keylistp, char ** valuep)
{
	return 0;
}

/*
XOPEN(400)
POSIX(200809)
*/