]> git.ipfire.org Git - thirdparty/glibc.git/blame - include/mntent.h
Add per-thread cache to malloc
[thirdparty/glibc.git] / include / mntent.h
CommitLineData
6796bc80 1#ifndef _MNTENT_H
12264bd7 2#include <misc/mntent.h>
bdbf022d 3
47755784
ZW
4# ifndef _ISOMAC
5
bdbf022d 6/* Now define the internal interfaces. */
a784e502 7extern FILE *__setmntent (const char *__file, const char *__mode);
fe559c5e
UD
8extern struct mntent *__getmntent_r (FILE *__stream,
9 struct mntent *__result,
c19559b0 10 char *__buffer, int __bufsize);
a784e502 11extern int __addmntent (FILE *__stream, const struct mntent *__mnt);
c19559b0 12extern int __endmntent (FILE *__stream);
a784e502 13extern char *__hasmntopt (const struct mntent *__mnt, const char *__opt);
6b87a564 14
30917259
MP
15libc_hidden_proto (__setmntent)
16libc_hidden_proto (__getmntent_r)
17libc_hidden_proto (__endmntent)
6b87a564 18
47755784 19# endif /* !_ISOMAC */
6796bc80 20#endif