diff options
author | Eitan Adler <eadler@FreeBSD.org> | 2013-04-26 17:56:35 +0000 |
---|---|---|
committer | Eitan Adler <eadler@FreeBSD.org> | 2013-04-26 17:56:35 +0000 |
commit | 4c99904b9a7653435895f4e090cbd153b366152d (patch) | |
tree | 6dfbab026700b105f51e28e4055ab0259a05d1fe /bin/rm | |
parent | 9d6d3f96d03feee62481767f309774b669fd185d (diff) | |
download | src-4c99904b9a7653435895f4e090cbd153b366152d.tar.gz src-4c99904b9a7653435895f4e090cbd153b366152d.zip |
Notes
Diffstat (limited to 'bin/rm')
-rw-r--r-- | bin/rm/rm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/rm/rm.c b/bin/rm/rm.c index 660042bfa55f..976b4eeb57c2 100644 --- a/bin/rm/rm.c +++ b/bin/rm/rm.c @@ -340,7 +340,7 @@ err: fts_close(fts); } -void +static void rm_file(char **argv) { struct stat sb; @@ -417,7 +417,7 @@ rm_file(char **argv) * System V file system). In a logging or COW file system, you'll have to * have kernel support. */ -int +static int rm_overwrite(const char *file, struct stat *sbp) { struct stat sb, sb2; |