sys/inttypes.h sys/atomic.h sys/machtypes.h sys/elf.h sys/mkdev.h \
sys/klog.h sys/zone.h sys/processor.h sys/pset.h sys/rctl.h sys/task.h \
sys/exacct.h sys/acct.h sys/acctctl.h sys/utssys.h sys/corectl.h \
- sys/port.h sys/acl.h sys/tsol/label.h sys/loadavg.h
+ sys/port.h sys/acl.h sys/tsol/label.h sys/loadavg.h sys/fsid.h sys/fstyp.h
sysdep_headers += rtld_db.h pcsample.h atomic.h bits/machtypes.h door.h \
ucred.h priv.h zone.h port.h deflt.h procfs.h rctl.h
headers := $(filter-out sys/sysinfo.h sys/xattr.h, $(headers))
--- /dev/null
+/* Copyright (C) 2008 Free Software Foundation, Inc.
+ This file is part of the GNU C Library.
+ Contributed by David Bartley <dtbartle@csclub.uwaterloo.ca>, 2008.
+
+ The GNU C Library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+
+ The GNU C Library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with the GNU C Library; if not, write to the Free
+ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+ 02111-1307 USA. */
+
+#ifndef _SYS_FSID_H
+#define _SYS_FSID_H
+
+#define S51K "S51K"
+#define PROC "PROC"
+#define DUFST "DUFST"
+#define NFS "NFS"
+#define S52K "S52K"
+
+#endif /* _SYS_FSID_H */
--- /dev/null
+/* Copyright (C) 2008 Free Software Foundation, Inc.
+ This file is part of the GNU C Library.
+ Contributed by David Bartley <dtbartle@csclub.uwaterloo.ca>, 2008.
+
+ The GNU C Library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+
+ The GNU C Library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with the GNU C Library; if not, write to the Free
+ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+ 02111-1307 USA. */
+
+#ifndef _SYS_FSTYP_H
+#define _SYS_FSTYP_H
+
+#include <features.h>
+
+#define GETFSIND 1
+#define GETFSTYP 2
+#define GETNFSTYP 3
+
+__BEGIN_DECLS
+
+int sysfs (int, ...);
+
+__END_DECLS
+
+#endif /* _SYS_FSTYP_H */