summaryrefslogtreecommitdiff
path: root/graphics/xfractint/files/patch-fractint.c
diff options
context:
space:
mode:
authorRenato Botelho <garga@FreeBSD.org>2010-10-01 18:52:21 +0000
committerRenato Botelho <garga@FreeBSD.org>2010-10-01 18:52:21 +0000
commit0c13254f97dc78cb4201221b6459172416cc35b7 (patch)
treed0df5f36041530850d04d9759b9b48a1c7cb5153 /graphics/xfractint/files/patch-fractint.c
parentDrop maintainership. (diff)
- Update to 20.04p09
- Pass maintainership to Paul B Mahol <onemda@gmail.com> Submitted by: Paul B Mahol <onemda@gmail.com> (by email)
Diffstat (limited to 'graphics/xfractint/files/patch-fractint.c')
-rw-r--r--graphics/xfractint/files/patch-fractint.c40
1 files changed, 0 insertions, 40 deletions
diff --git a/graphics/xfractint/files/patch-fractint.c b/graphics/xfractint/files/patch-fractint.c
deleted file mode 100644
index e9fea5a958d1..000000000000
--- a/graphics/xfractint/files/patch-fractint.c
+++ /dev/null
@@ -1,40 +0,0 @@
---- fractint.c.orig Tue Sep 7 00:38:10 1999
-+++ fractint.c Sun Dec 7 12:15:08 2003
-@@ -10,7 +10,7 @@
- #include <io.h>
- #include <stdarg.h>
- #else
--#include <varargs.h>
-+#include <stdarg.h>
- #endif
- #include <ctype.h>
-
-@@ -540,12 +540,7 @@
- timer(1,NULL,int width) decoder
- timer(2) encoder
- */
--#ifndef XFRACT
- int timer(int timertype,int(*subrtn)(),...)
--#else
--int timer(va_alist)
--va_dcl
--#endif
- {
- va_list arg_marker; /* variable arg list */
- char *timestring;
-@@ -555,15 +550,7 @@
- int i;
- int do_bench;
-
--#ifndef XFRACT
- va_start(arg_marker,subrtn);
--#else
-- int timertype;
-- int (*subrtn)();
-- va_start(arg_marker);
-- timertype = va_arg(arg_marker, int);
-- subrtn = (int (*)())va_arg(arg_marker, int *);
--#endif
-
- do_bench = timerflag; /* record time? */
- if (timertype == 2) /* encoder, record time only if debug=200 */