about summary refs log tree commit diff
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-rw-r--r--src/include/fsent.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/include/fsent.h b/src/include/fsent.h
new file mode 100644
index 0000000..676130c
--- /dev/null
+++ b/src/include/fsent.h
@@ -0,0 +1,11 @@
+#include <string.h>
+#include <stdio.h>
+#ifdef IN_MUSL
+#include <fstab.h>
+#else
+#include "fstab.h"
+#endif
+
+void __fclose_keep_errno(FILE *);
+int __getfs_a(char const *, char const *, struct fstab *, char **, size_t *);
+int __getfsent_a(FILE *, struct fstab *, char **, size_t *);