Added sfdisk. Ststic-ified a bunch of stuff.
This commit is contained in:
21
tar.c
21
tar.c
@@ -12,17 +12,6 @@
|
||||
|
||||
|
||||
#include "internal.h"
|
||||
|
||||
#ifdef BB_TAR
|
||||
|
||||
const char tar_usage[] =
|
||||
"Create, extract, or list files from a TAR file\n\n"
|
||||
"usage: tar -[cxtvOf] [tarFileName] [FILE] ...\n"
|
||||
"\tc=create, x=extract, t=list contents, v=verbose,\n"
|
||||
"\tO=extract to stdout, f=tarfile or \"-\" for stdin\n";
|
||||
|
||||
|
||||
|
||||
#include <stdio.h>
|
||||
#include <dirent.h>
|
||||
#include <errno.h>
|
||||
@@ -30,6 +19,15 @@ const char tar_usage[] =
|
||||
#include <signal.h>
|
||||
#include <time.h>
|
||||
|
||||
|
||||
static const char tar_usage[] =
|
||||
"Create, extract, or list files from a TAR file\n\n"
|
||||
"usage: tar -[cxtvOf] [tarFileName] [FILE] ...\n"
|
||||
"\tc=create, x=extract, t=list contents, v=verbose,\n"
|
||||
"\tO=extract to stdout, f=tarfile or \"-\" for stdin\n";
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* Tar file constants.
|
||||
*/
|
||||
@@ -1151,5 +1149,4 @@ wantFileName (const char *fileName, int fileCount, char **fileTable)
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
/* END CODE */
|
||||
|
||||
Reference in New Issue
Block a user