1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Description: Declare used function
to avoid a build failure with -Werror=implicit-function-declaration
Origin: vendor
Bug-Debian: https://bugs.debian.org/1065788
Forwarded: not-yet, CPAN RT is not cooperative
Author: gregor herrmann <gregoa@debian.org>
Last-Update: 2024-03-11
--- a/Hebrew.xs
+++ b/Hebrew.xs
@@ -7,6 +7,7 @@
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
+#include "bidi.h"
#ifdef __cplusplus
}
#endif
--- /dev/null
+++ b/bidi.h
@@ -0,0 +1 @@
+void bidimain(char *string, int cch);
|