- Neat function prototypes, unshadowed local declarations.

git-svn-id: file:///svn/unbound/trunk@2188 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards
2010-07-07 13:13:36 +00:00
parent 391e1912de
commit f042f0dd5d
58 changed files with 136 additions and 132 deletions
+8 -8
View File
@@ -57,20 +57,20 @@ void unit_show_func(const char* file, const char* func);
void unit_show_feature(const char* feature);
/** unit test lruhashtable implementation */
void lruhash_test();
void lruhash_test(void);
/** unit test slabhashtable implementation */
void slabhash_test();
void slabhash_test(void);
/** unit test for msgreply and msgparse */
void msgparse_test();
void msgparse_test(void);
/** unit test dname handling functions */
void dname_test();
void dname_test(void);
/** unit test trust anchor storage functions */
void anchors_test();
void anchors_test(void);
/** unit test for verification functions */
void verify_test();
void verify_test(void);
/** unit test for negative cache functions */
void neg_test();
void neg_test(void);
/** unit test for regional allocator functions */
void regional_test();
void regional_test(void);
#endif /* TESTCODE_UNITMAIN_H */