summaryrefslogtreecommitdiff
path: root/src/stdio/fdopen.c
blob: 875d5b9a4bb45a0be74e38b0d57af7a03a32bf01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>
#include "_stdio.h"

FILE * fdopen(int fildes, const char * mode)
{
	SIGNAL_SAFE(0);
	(void)fildes; (void)mode;
	return NULL;
}

/*
POSIX(1)
*/