use bb_xbind/bb_xlisten
[oweals/busybox.git] / coreutils / libcoreutils / coreutils.h
1 /*
2  * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
3  */
4
5 #ifndef COREUTILS_H
6 #define COREUTILS_H             1
7
8 typedef int (*stat_func)(const char *fn, struct stat *ps);
9
10 extern int cp_mv_stat2(const char *fn, struct stat *fn_stat, stat_func sf);
11 extern int cp_mv_stat(const char *fn, struct stat *fn_stat);
12
13 extern mode_t getopt_mk_fifo_nod(int argc, char **argv);
14
15 #endif