diff options
author | Matt Kraai <kraai@debian.org> | 2001-04-24 01:30:02 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2001-04-24 01:30:02 +0000 |
commit | 01441036e9754425e2b09b43deec879ca46206cb (patch) | |
tree | d9d4c66bb7d2142dd525adfa3a9cae07e3f80557 /include | |
parent | 9ff9325e60eac6cc119eab5dff0dbbba78edfd32 (diff) |
Use generic flag names.
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/libbb.h b/include/libbb.h index 4eeb99343..404d7076c 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -255,11 +255,11 @@ extern int gz_open(FILE *compressed_file, int *pid); /* extern int convert(char *fn, int ConvType); */ enum { - CP_PRESERVE_STATUS = 1, - CP_PRESERVE_SYMLINKS = 2, - CP_RECUR = 4, - CP_FORCE = 8, - CP_INTERACTIVE = 16 + FILEUTILS_PRESERVE_STATUS = 1, + FILEUTILS_PRESERVE_SYMLINKS = 2, + FILEUTILS_RECUR = 4, + FILEUTILS_FORCE = 8, + FILEUTILS_INTERACTIVE = 16 }; extern const char *applet_name; |