Rev 3346 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3346 | Rev 3364 | ||
---|---|---|---|
Line 31... | Line 31... | ||
31 | int d_removed; /* Number of directories unlinked */ |
31 | int d_removed; /* Number of directories unlinked */ |
32 | } rm_job_t; |
32 | } rm_job_t; |
33 | 33 | ||
34 | 34 | ||
35 | /* Prototypes for the rm command, excluding entry points */ |
35 | /* Prototypes for the rm command, excluding entry points */ |
36 | extern unsigned int rm_start(rm_job_t *); |
36 | static unsigned int rm_start(rm_job_t *); |
37 | extern void rm_end(rm_job_t *rm); |
37 | static void rm_end(rm_job_t *rm); |
38 | extern unsigned int rm_recursive(const char *); |
38 | static unsigned int rm_recursive(const char *); |
39 | extern unsigned int rm_single(const char *); |
39 | static unsigned int rm_single(const char *); |
40 | extern unsigned int rm_scope(const char *); |
40 | static unsigned int rm_scope(const char *); |
41 | 41 | ||
42 | #endif /* RM_H */ |
42 | #endif /* RM_H */ |
43 | 43 |