summaryrefslogtreecommitdiff
path: root/app-i18n/kcc/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-i18n/kcc/files
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-i18n/kcc/files')
-rw-r--r--app-i18n/kcc/files/kcc-exit.diff10
-rw-r--r--app-i18n/kcc/files/kcc-gcc3-gentoo.diff47
2 files changed, 0 insertions, 57 deletions
diff --git a/app-i18n/kcc/files/kcc-exit.diff b/app-i18n/kcc/files/kcc-exit.diff
deleted file mode 100644
index 478977a88256..000000000000
--- a/app-i18n/kcc/files/kcc-exit.diff
+++ /dev/null
@@ -1,10 +0,0 @@
---- a/kcc.c
-+++ b/kcc.c
-@@ -27,6 +27,7 @@
- #endif
-
- #include <stdio.h>
-+#include <stdlib.h>
- #include <string.h>
- #include <sys/types.h>
- #include <sys/stat.h>
diff --git a/app-i18n/kcc/files/kcc-gcc3-gentoo.diff b/app-i18n/kcc/files/kcc-gcc3-gentoo.diff
deleted file mode 100644
index 88f08e20161d..000000000000
--- a/app-i18n/kcc/files/kcc-gcc3-gentoo.diff
+++ /dev/null
@@ -1,47 +0,0 @@
---- a/kcc.c
-+++ b/kcc.c
-@@ -134,7 +134,11 @@
- extern unsigned short hiragana[];
- unsigned short *kanatbl = katakana;
-
-+#ifdef __STDC__
-+void error(char *format, ...);
-+#else
- void error();
-+#endif
-
- /**********************************************************************
- * *
-@@ -364,14 +368,30 @@
- NAME
- error - print formatted error message on stderr and die
- ---------------------------------------------------------------------*/
-+#ifdef __STDC__
-+#include <stdarg.h>
-+#else
- #include <varargs.h>
-+#endif
-
--void error(va_alist)
-- va_dcl
-+void
-+#ifdef __STDC__
-+error(char *format, ...)
-+#else
-+error(va_alist) va_dcl
-+#endif
- {
- va_list args;
-
-+#ifdef __STDC__
-+ va_start(args, format);
-+#else
-+ char *format;
-+
- va_start(args);
-+ /* extract the fixed argument */
-+ format = va_arg(args, char *);
-+#endif
- fprintf(stderr, "%s: ", progname);
- vfprintf(stderr, va_arg(args, char *), args);
- putc('\n', stderr);