X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fexclude.c;h=ebb599cfc14e16f3b28777ebbb539eab0ec10bd1;hb=e9721c2f5a8ea905fba888055ca0fd0767f8873d;hp=e5cdfc34b9bdcef8d5f0217dcb2db77ad6eddf55;hpb=8a89b026847b0a27d5b9031490f646937eb3da20;p=gnulib.git diff --git a/lib/exclude.c b/lib/exclude.c index e5cdfc34b..ebb599cfc 100644 --- a/lib/exclude.c +++ b/lib/exclude.c @@ -31,8 +31,8 @@ extern int errno; #include #include -void *xmalloc __EXCLUDE_P ((size_t)); -void *xrealloc __EXCLUDE_P ((void *, size_t)); +void *xmalloc PARAMS ((size_t)); +void *xrealloc PARAMS ((void *, size_t)); /* Keep track of excluded file name patterns. */ @@ -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) {