Skip to content

Commit 51907fa

Browse files
committed
tests: remove unused uncounting_illegal_callback_fn
This callback function has been unused since a1d52e3
1 parent a7a5117 commit 51907fa

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/tests.c

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -87,15 +87,6 @@ static void counting_callback_fn(const char* str, void* data) {
8787
(*p)++;
8888
}
8989

90-
static void uncounting_illegal_callback_fn(const char* str, void* data) {
91-
/* Dummy callback function that just counts (backwards). */
92-
int32_t *p;
93-
(void)str;
94-
p = data;
95-
CHECK(*p != INT32_MIN);
96-
(*p)--;
97-
}
98-
9990
static void run_xoshiro256pp_tests(void) {
10091
{
10192
size_t i;

0 commit comments

Comments
 (0)