diff options
Diffstat (limited to 'coreutils/libcoreutils/coreutils.h')
-rw-r--r-- | coreutils/libcoreutils/coreutils.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/coreutils/libcoreutils/coreutils.h b/coreutils/libcoreutils/coreutils.h new file mode 100644 index 000000000..eabca8204 --- /dev/null +++ b/coreutils/libcoreutils/coreutils.h | |||
@@ -0,0 +1,12 @@ | |||
1 | #ifndef COREUTILS_H | ||
2 | #define COREUTILS_H 1 | ||
3 | |||
4 | typedef int (*stat_func)(const char *fn, struct stat *ps); | ||
5 | |||
6 | extern int cp_mv_stat2(const char *fn, struct stat *fn_stat, stat_func sf); | ||
7 | extern int cp_mv_stat(const char *fn, struct stat *fn_stat); | ||
8 | |||
9 | extern mode_t getopt_mk_fifo_nod(int argc, char **argv); | ||
10 | extern FILE *xgetoptfile_sort_uniq(char **argv, const char *mode); | ||
11 | |||
12 | #endif | ||