X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Ffile-set.h;h=4e47d95a1f1b1b8ce808753c5333d24a83d24b7a;hb=3cfc178b2dc48cca0decbf69f611e436c8fa3b7a;hp=a5a159e94d4169417d1220042953174a9bf39b06;hpb=024eeefda59f214eeaac745db9f3e982b9a726c3;p=gnulib.git diff --git a/lib/file-set.h b/lib/file-set.h index a5a159e94..4e47d95a1 100644 --- a/lib/file-set.h +++ b/lib/file-set.h @@ -5,8 +5,11 @@ #include "hash.h" extern void record_file (Hash_table *ht, char const *file, - struct stat const *stats) - __attribute__((nonnull(2, 3))); + struct stat const *stats) +#if defined __GNUC__ && ((__GNUC__ == 3 && __GNUC_MINOR__ >= 3) || __GNUC__ > 3) + __attribute__ ((nonnull (2, 3))) +#endif +; extern bool seen_file (Hash_table const *ht, char const *file, - struct stat const *stats); + struct stat const *stats);