Page Breaks: avoid flickering of the tab by drawing it over the line
[LibreOffice.git] / gettext / gettext-0.18.1.1.stpncpy.patch
bloba9400867a53e34c837c93f04766d82e27cf8f352
1 --- misc/gettext-0.18.1.1/gettext-tools/configure 2010-06-06 22:12:20.000000000 +0200
2 +++ misc/build/gettext-0.18.1.1/gettext-tools/configure 2011-08-12 22:46:06.000000000 +0200
3 @@ -40606,7 +40606,9 @@
4 #include <stdlib.h>
5 #include <string.h> /* for strcpy */
6 /* The stpncpy prototype is missing in <string.h> on AIX 4. */
7 +#if !defined stpncpy /* see <https://savannah.gnu.org/bugs/index.php?33999> */
8 extern char *stpncpy (char *dest, const char *src, size_t n);
9 +#endif
10 int main () {
11 const char *src = "Hello";
12 char dest[10];