* tests/test-strsignal.c [__HAIKU__]: Skip signature check.
* doc/posix-functions/strsignal.texi: Document that strsignal returns
'const char *' instead of 'char *' on Haiku.
+2025-04-21 Collin Funk <collin.funk1@gmail.com>
+
+ strsignal tests: Disable signature check on Haiku.
+ * tests/test-strsignal.c [__HAIKU__]: Skip signature check.
+ * doc/posix-functions/strsignal.texi: Document that strsignal returns
+ 'const char *' instead of 'char *' on Haiku.
+
2025-04-21 Paul Eggert <eggert@cs.ucla.edu>
getloadavg: port to Android 3.1-
@itemize
@item This function returns @code{const char *} instead of @code{char *} on
some platforms:
-cygwin 1.5.25.
+@c https://dev.haiku-os.org/ticket/19537
+cygwin 1.5.25, Haiku.
@end itemize
/* Test of strsignal() function.
- 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 <string.h>
#include "signature.h"
+#if !defined __HAIKU__
SIGNATURE_CHECK (strsignal, char *, (int));
+#endif
#include <signal.h>