diff options
author | Jim Meyering <jim@meyering.net> | 1997-12-21 11:57:17 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1997-12-21 11:57:17 +0000 |
commit | a1003f154f40607674f8a0fd1d7b2de3c889bca4 (patch) | |
tree | ae0be2fd3d66f733c2022192fd8a5d66c1922c9f /lib | |
parent | 3ba71d6de18bd52c6fd4269189d8b5d10f8c5cb4 (diff) | |
download | coreutils-a1003f154f40607674f8a0fd1d7b2de3c889bca4.tar.xz |
remove FIXME-describe comments
Diffstat (limited to 'lib')
-rw-r--r-- | lib/exclude.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/exclude.c b/lib/exclude.c index e5cdfc34b..47f8e8132 100644 --- a/lib/exclude.c +++ b/lib/exclude.c @@ -43,8 +43,6 @@ struct exclude int exclude_count; }; -/* FIXME: describe */ - struct exclude * new_exclude (void) { @@ -55,8 +53,6 @@ new_exclude (void) return ex; } -/* FIXME: describe */ - int excluded_filename (struct exclude const *ex, char const *f) { @@ -71,8 +67,6 @@ excluded_filename (struct exclude const *ex, char const *f) return 0; } -/* FIXME: describe */ - void add_exclude (struct exclude *ex, char const *pattern) { @@ -84,8 +78,6 @@ add_exclude (struct exclude *ex, char const *pattern) ex->exclude[ex->exclude_count++] = pattern; } -/* FIXME: describe */ - int add_exclude_file (struct exclude *ex, char const *filename, char line_end) { |