diff options
author | EuAndreh <eu@euandre.org> | 2024-01-04 20:36:02 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-01-05 05:47:09 -0300 |
commit | 8492f115890d56c98c1da24b9fdf26bb1b714c05 (patch) | |
tree | 7d90469d2aff11c2e4c8e99e7b46aa8e8eb43008 /src/search/hsearch.c | |
parent | Fix the build system. (diff) | |
download | grovel-8492f115890d56c98c1da24b9fdf26bb1b714c05.tar.gz grovel-8492f115890d56c98c1da24b9fdf26bb1b714c05.tar.xz |
Setup stub unit test infrastructure
Diffstat (limited to 'src/search/hsearch.c')
-rw-r--r-- | src/search/hsearch.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/search/hsearch.c b/src/search/hsearch.c index 2634a67f..a2ba83ce 100644 --- a/src/search/hsearch.c +++ b/src/search/hsearch.c @@ -151,3 +151,11 @@ static int __hsearch_r(ENTRY item, ACTION action, ENTRY **retval, struct hsearch return 1; } weak_alias(__hsearch_r, hsearch_r); + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |