tests: remove unused uncounting_illegal_callback_fn

This callback function has been unused since
a1d52e3e12
This commit is contained in:
Jonas Nick
2025-03-13 08:01:08 +00:00
parent a7a5117144
commit 51907fa918

View File

@@ -87,15 +87,6 @@ static void counting_callback_fn(const char* str, void* data) {
(*p)++;
}
static void uncounting_illegal_callback_fn(const char* str, void* data) {
/* Dummy callback function that just counts (backwards). */
int32_t *p;
(void)str;
p = data;
CHECK(*p != INT32_MIN);
(*p)--;
}
static void run_xoshiro256pp_tests(void) {
{
size_t i;