summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/fgets_unlocked.c
blob: 9e2dca600a03fd761f4084e9471306fd5fbbfe31 (plain)
1
2
3
4
5
6
#include <stdio.h>

char *fgets_unlocked(char *s, int n, FILE *stream)
{
	return fread_unlocked(s, 1, n, stream) ? s : NULL;
}