Magellan Linux

Contents of /trunk/mkinitrd-magellan/busybox/coreutils/libcoreutils/coreutils.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 816 - (show annotations) (download)
Fri Apr 24 18:33:46 2009 UTC (15 years ago) by niro
File MIME type: text/plain
File size: 543 byte(s)
-updated to busybox-1.13.4
1 /* vi: set sw=4 ts=4: */
2 /*
3 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
4 */
5
6 #ifndef COREUTILS_H
7 #define COREUTILS_H 1
8
9 #if __GNUC_PREREQ(4,1)
10 # pragma GCC visibility push(hidden)
11 #endif
12
13 typedef int (*stat_func)(const char *fn, struct stat *ps);
14
15 int cp_mv_stat2(const char *fn, struct stat *fn_stat, stat_func sf) FAST_FUNC;
16 int cp_mv_stat(const char *fn, struct stat *fn_stat) FAST_FUNC;
17
18 mode_t getopt_mk_fifo_nod(char **argv) FAST_FUNC;
19
20 #if __GNUC_PREREQ(4,1)
21 # pragma GCC visibility pop
22 #endif
23
24 #endif