xref: /openbsd-src/lib/libc/hidden/sys/mount.h (revision 5674b11ff5f1df7421702a793745924b56116350)
1*5674b11fSguenther /*	$OpenBSD: mount.h,v 1.2 2015/09/14 10:11:54 guenther Exp $	*/
215a0f535Sguenther /*
315a0f535Sguenther  * Copyright (c) 2015 Philip Guenther <guenther@openbsd.org>
415a0f535Sguenther  *
515a0f535Sguenther  * Permission to use, copy, modify, and distribute this software for any
615a0f535Sguenther  * purpose with or without fee is hereby granted, provided that the above
715a0f535Sguenther  * copyright notice and this permission notice appear in all copies.
815a0f535Sguenther  *
915a0f535Sguenther  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1015a0f535Sguenther  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1115a0f535Sguenther  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1215a0f535Sguenther  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1315a0f535Sguenther  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1415a0f535Sguenther  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
1515a0f535Sguenther  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1615a0f535Sguenther  */
1715a0f535Sguenther 
1815a0f535Sguenther #ifndef _LIBC_SYS_MOUNT_H_
1915a0f535Sguenther #define _LIBC_SYS_MOUNT_H_
2015a0f535Sguenther 
2115a0f535Sguenther #include_next <sys/mount.h>
2215a0f535Sguenther 
2315a0f535Sguenther PROTO_NORMAL(fhopen);
2415a0f535Sguenther PROTO_NORMAL(fhstat);
2515a0f535Sguenther PROTO_NORMAL(fhstatfs);
2615a0f535Sguenther PROTO_NORMAL(fstatfs);
2715a0f535Sguenther PROTO_NORMAL(getfh);
2815a0f535Sguenther PROTO_NORMAL(getfsstat);
29*5674b11fSguenther PROTO_DEPRECATED(getmntinfo);
3015a0f535Sguenther PROTO_NORMAL(mount);
3115a0f535Sguenther PROTO_NORMAL(statfs);
3215a0f535Sguenther PROTO_NORMAL(unmount);
3315a0f535Sguenther 
3415a0f535Sguenther #endif /* !_LIBC_SYS_MOUNT_H_ */
35