summaryrefslogtreecommitdiffstats
path: root/usr/klibc/setmntent.c
blob: d23e14181589a96ab96e4ec1337d1db33d67147f (plain)
1
2
3
4
5
6
7
#include <stdio.h>
#include <mntent.h>

FILE *setmntent(const char *filename, const char *type)
{
	return fopen(filename, type);
}