609b92152f
Copy from devel:languages:perl/perl based on submit request 31309 from user coolo OBS-URL: https://build.opensuse.org/request/show/31309 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl?expand=0&rev=36
21 lines
418 B
Diff
21 lines
418 B
Diff
--- Configure
|
|
+++ Configure
|
|
@@ -10860,7 +10860,7 @@
|
|
va_start(args, n);
|
|
exit((unsigned long)vsprintf(buf,"%s",args) > 10L);
|
|
}
|
|
-int main() { xxx(1, "foo"); }
|
|
+int main() { xxx(1, "foo"); return 0; }
|
|
|
|
#else /* I_VARARGS */
|
|
|
|
@@ -10872,7 +10872,7 @@
|
|
va_start(args);
|
|
exit((unsigned long)vsprintf(buf,"%s",args) > 10L);
|
|
}
|
|
-int main() { xxx("foo"); }
|
|
+int main() { xxx("foo"); return 0; }
|
|
|
|
#endif
|
|
|