aboutsummaryrefslogtreecommitdiff
path: root/include/libbb.h
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2018-07-25 10:41:42 +0100
committerRon Yorston <rmy@pobox.com>2018-07-25 10:41:42 +0100
commit59873514f17cefd6ba3997dad5779f75433fd4e6 (patch)
tree1c9d0a3450ed95f0b820285b9f9fc217c902e652 /include/libbb.h
parent779fd5745ac11bf752f5f4b977a274a39c192f90 (diff)
parent81de30de05beebabfa72f2a01ec4f33e9a1923e3 (diff)
downloadbusybox-w32-59873514f17cefd6ba3997dad5779f75433fd4e6.tar.gz
busybox-w32-59873514f17cefd6ba3997dad5779f75433fd4e6.tar.bz2
busybox-w32-59873514f17cefd6ba3997dad5779f75433fd4e6.zip
Merge branch 'busybox'
Diffstat (limited to 'include/libbb.h')
-rw-r--r--include/libbb.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h
index fb9167ce3..0264282dd 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -428,6 +428,9 @@ enum { /* cp.c, mv.c, install.c depend on these values. CAREFUL when changing th
428 FILEUTILS_PRESERVE_SECURITY_CONTEXT = 1 << 15, /* -c */ 428 FILEUTILS_PRESERVE_SECURITY_CONTEXT = 1 << 15, /* -c */
429#endif 429#endif
430 FILEUTILS_RMDEST = 1 << (16 - !ENABLE_SELINUX), /* --remove-destination */ 430 FILEUTILS_RMDEST = 1 << (16 - !ENABLE_SELINUX), /* --remove-destination */
431 /* bit 17 skipped for "cp --parents" */
432 FILEUTILS_REFLINK = 1 << (18 - !ENABLE_SELINUX), /* cp --reflink=auto */
433 FILEUTILS_REFLINK_ALWAYS = 1 << (19 - !ENABLE_SELINUX), /* cp --reflink[=always] */
431 /* 434 /*
432 * Hole. cp may have some bits set here, 435 * Hole. cp may have some bits set here,
433 * they should not affect remove_file()/copy_file() 436 * they should not affect remove_file()/copy_file()
@@ -503,6 +506,7 @@ DIR *xopendir(const char *path) FAST_FUNC;
503DIR *warn_opendir(const char *path) FAST_FUNC; 506DIR *warn_opendir(const char *path) FAST_FUNC;
504 507
505char *xmalloc_realpath(const char *path) FAST_FUNC RETURNS_MALLOC; 508char *xmalloc_realpath(const char *path) FAST_FUNC RETURNS_MALLOC;
509char *xmalloc_realpath_coreutils(const char *path) FAST_FUNC RETURNS_MALLOC;
506char *xmalloc_readlink(const char *path) FAST_FUNC RETURNS_MALLOC; 510char *xmalloc_readlink(const char *path) FAST_FUNC RETURNS_MALLOC;
507char *xmalloc_readlink_or_warn(const char *path) FAST_FUNC RETURNS_MALLOC; 511char *xmalloc_readlink_or_warn(const char *path) FAST_FUNC RETURNS_MALLOC;
508/* !RETURNS_MALLOC: it's a realloc-like function */ 512/* !RETURNS_MALLOC: it's a realloc-like function */