diff options
| author | Laurent Bercot <ska-skaware@skarnet.org> | 2020-08-25 20:04:42 +0000 |
|---|---|---|
| committer | Laurent Bercot <ska-skaware@skarnet.org> | 2020-08-25 20:04:42 +0000 |
| commit | c43a9ae78220daadd71e00fc0596ceb839621e28 (patch) | |
| tree | f263485ed0a09b31afe38be42e151cf9fc1dad9c /src/include | |
| download | libfstab-master.tar.gz | |
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/fsent.h | 11 |
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 *); |
