annotate lib/file-set.h @ 10375:f96e845fc36d
Avoid some "gcc -pedantic" warnings.
author |
Bruno Haible <bruno@clisp.org> |
date |
Sat, 30 Aug 2008 03:09:15 +0200 |
parents |
b7de93942166 |
children |
e8d2c6fc33ad |
rev |
line source |
9226
|
1 #include <sys/types.h> |
|
2 #include <sys/stat.h> |
|
3 #include <stdbool.h> |
|
4 |
|
5 #include "hash.h" |
|
6 |
|
7 extern void record_file (Hash_table *ht, char const *file, |
|
8 struct stat const *stats) |
|
9 __attribute__((nonnull(2, 3))); |
|
10 |
|
11 extern bool seen_file (Hash_table const *ht, char const *file, |
|
12 struct stat const *stats); |