You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-astronomy/pal/files/pal-0.9.8-fix-strlcpy-musl....

15 lines
302 B

Bug: https://bugs.gentoo.org/898106
bsd/string.h is available on most libc's
--- a/palDfltin.c
+++ b/palDfltin.c
@@ -121,6 +121,9 @@ static int ISBLANK( int c ) {
#ifdef HAVE_BSD_STRING_H
#include <bsd/string.h>
+#else
+#define _GNU_SOURCE
+#define __USE_MISC
#endif
/* System include files */