summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libugly/setmntent.c
blob: a91d3902b7b8f402bbce2f93bc15d53e4b8792b8 (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);
}