Subversion Repositories HelenOS

Rev

Rev 3364 | Rev 3376 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3364 Rev 3375
Line 46... Line 46...
46
static char *cmdname = "rm";
46
static char *cmdname = "rm";
47
#define RM_VERSION "0.0.1"
47
#define RM_VERSION "0.0.1"
48
 
48
 
49
static rm_job_t rm;
49
static rm_job_t rm;
50
 
50
 
51
static struct option long_options[] = {
51
static struct option const long_options[] = {
52
    { "help", no_argument, 0, 'h' },
52
    { "help", no_argument, 0, 'h' },
53
    { "version", no_argument, 0, 'v' },
53
    { "version", no_argument, 0, 'v' },
54
    { "recursive", no_argument, 0, 'r' },
54
    { "recursive", no_argument, 0, 'r' },
55
    { "force", no_argument, 0, 'f' },
55
    { "force", no_argument, 0, 'f' },
56
    { "safe", no_argument, 0, 's' },
56
    { "safe", no_argument, 0, 's' },