summaryrefslogtreecommitdiff
path: root/src/stdio/fdopen.c
blob: 9f6f8d72c44e1414b9d3ad4a350f5e0859e4c25a (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>

FILE * fdopen(int fildes, const char * mode)
{
	(void)fildes; (void)mode;
	return NULL;
}
/*
POSIX(1)
*/