summaryrefslogtreecommitdiff
path: root/chinese/ve/files/extrapatch-screen.c
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2006-01-14 21:16:35 +0000
committerPav Lucistnik <pav@FreeBSD.org>2006-01-14 21:16:35 +0000
commit7dc0abbf5419130e2cdbed5ee27d89612f830e35 (patch)
tree44261f8efd5a45201d45576fce6918470533bc6d /chinese/ve/files/extrapatch-screen.c
parentGnash is a GNU Flash movie player. Till now it has been possible (diff)
- Remove expired ports
Diffstat (limited to 'chinese/ve/files/extrapatch-screen.c')
-rw-r--r--chinese/ve/files/extrapatch-screen.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/chinese/ve/files/extrapatch-screen.c b/chinese/ve/files/extrapatch-screen.c
deleted file mode 100644
index e42a0ee4a5a2..000000000000
--- a/chinese/ve/files/extrapatch-screen.c
+++ /dev/null
@@ -1,28 +0,0 @@
---- screen.c.orig Thu Dec 18 01:08:35 2003
-+++ screen.c Thu Dec 18 01:09:44 2003
-@@ -6,7 +6,7 @@
- /* update : 95/12/15 */
- /*-------------------------------------------------------*/
-
--#include <varargs.h>
-+#include <stdarg.h>
- #include "bbs.h"
-
- extern char clearbuf[];
-@@ -601,13 +601,12 @@
-
-
- void
--prints(va_alist)
--va_dcl
-+prints(char *fmt, ...)
- {
- va_list args;
-- char buff[512], *fmt;
-+ char buff[512];
-
-- va_start(args);
-+ va_start(args, fmt);
- fmt = va_arg(args, char *);
- vsprintf(buff, fmt, args);
- va_end(args);