+2025-04-22 Collin Funk <collin.funk1@gmail.com>
+
+ random_r tests: Disable signature check on Haiku.
+ * tests/test-random_r.c [__HAIKU__]: Skip initstate_r and setstate_r
+ signature check.
+ * doc/glibc-functions/initstate_r.texi: Remove year.
+ * doc/glibc-functions/setstate_r.texi: Likewise.
+
2025-04-21 Collin Funk <collin.funk1@gmail.com>
strsignal tests: Disable signature check on Haiku.
/* Test random_r.
- Copyright (C) 2008-2024 Free Software Foundation, Inc.
+ Copyright (C) 2008-2025 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
#include "signature.h"
SIGNATURE_CHECK (srandom_r, int, (unsigned int, struct random_data *));
+#if !defined __HAIKU__
SIGNATURE_CHECK (initstate_r, int, (unsigned int, char *, size_t,
struct random_data *));
SIGNATURE_CHECK (setstate_r, int, (char *, struct random_data *));
+#endif
SIGNATURE_CHECK (random_r, int, (struct random_data *, int32_t *));
#include <time.h>