summaryrefslogtreecommitdiffstats
path: root/usr/klibc/endmntent.c
blob: 419c3179b052e67323872e9b71aa88089dd0e0fc (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>
#include <mntent.h>

int endmntent(FILE *fp)
{
	if (fp)
		fclose(fp);
	return 1;
}