diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2003-03-19 09:13:01 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2003-03-19 09:13:01 +0000 |
commit | cad5364599eb5062d59e0c397ed638ddd61a8d5d (patch) | |
tree | a318d0f03aa076c74b576ea45dc543a5669e8e91 /coreutils/libcoreutils/coreutils.h | |
parent | e01f9662a5bd5d91be4f6b3941b57fff73cd5af1 (diff) | |
download | busybox-w32-cad5364599eb5062d59e0c397ed638ddd61a8d5d.tar.gz busybox-w32-cad5364599eb5062d59e0c397ed638ddd61a8d5d.tar.bz2 busybox-w32-cad5364599eb5062d59e0c397ed638ddd61a8d5d.zip |
Major coreutils update.
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 | ||