diff options
Diffstat (limited to 'archival/ar.c')
-rw-r--r-- | archival/ar.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/archival/ar.c b/archival/ar.c index 05556c6cb..730d7c6c6 100644 --- a/archival/ar.c +++ b/archival/ar.c | |||
@@ -179,17 +179,17 @@ static void FAST_FUNC header_verbose_list_ar(const file_header_t *file_header) | |||
179 | ); | 179 | ); |
180 | } | 180 | } |
181 | 181 | ||
182 | #define AR_OPT_VERBOSE (1 << 0) | 182 | #define AR_OPT_VERBOSE (1 << 0) |
183 | #define AR_OPT_PRESERVE_DATE (1 << 1) | 183 | #define AR_OPT_PRESERVE_DATE (1 << 1) |
184 | /* "ar r" implies create, but warns about it. c suppresses warning. | 184 | /* "ar r" implies create, but warns about it. c suppresses warning. |
185 | * bbox accepts but ignores it: */ | 185 | * bbox accepts but ignores it: */ |
186 | #define AR_OPT_CREATE (1 << 2) | 186 | #define AR_OPT_CREATE (1 << 2) |
187 | 187 | ||
188 | #define AR_CMD_PRINT (1 << 3) | 188 | #define AR_CMD_PRINT (1 << 3) |
189 | #define FIRST_CMD AR_CMD_PRINT | 189 | #define FIRST_CMD AR_CMD_PRINT |
190 | #define AR_CMD_LIST (1 << 4) | 190 | #define AR_CMD_LIST (1 << 4) |
191 | #define AR_CMD_EXTRACT (1 << 5) | 191 | #define AR_CMD_EXTRACT (1 << 5) |
192 | #define AR_CMD_INSERT (1 << 6) | 192 | #define AR_CMD_INSERT (1 << 6) |
193 | 193 | ||
194 | int ar_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 194 | int ar_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
195 | int ar_main(int argc UNUSED_PARAM, char **argv) | 195 | int ar_main(int argc UNUSED_PARAM, char **argv) |