wdvi

network DVI viewer
Log | Files | Refs

commit 4fc18d6a5ec0dd82afde4e5daed75635b22f7a11
parent 640692cb46c4def29a5241e4e29d097ba1e2e7a0
Author: Kyle Milz <krwmilz@gmail.com>
Date:   Thu, 19 Aug 2021 18:13:28 +0000

assume vfprintf will not give us trouble

Diffstat:
Mdvi-draw.c | 4----
Mutil.c | 4----
2 files changed, 0 insertions(+), 8 deletions(-)

diff --git a/dvi-draw.c b/dvi-draw.c @@ -45,10 +45,6 @@ NOTE: #include <stdarg.h> -#ifdef DOPRNT /* define this if vfprintf gives you trouble */ -#define vfprintf(stream, message, args) _doprnt(message, args, stream) -#endif - static struct frame frame0; /* dummy head of list */ #ifdef TEXXET static struct frame *scan_frame; /* head frame for scanning */ diff --git a/util.c b/util.c @@ -42,10 +42,6 @@ NOTE: #include <stdarg.h> -#ifdef DOPRNT /* define this if vfprintf gives you trouble */ -#define vfprintf(stream, message, args) _doprnt(message, args, stream) -#endif - /* if POSIX O_NONBLOCK is not available, use O_NDELAY */ #if !defined O_NONBLOCK && defined O_NDELAY # define O_NONBLOCK O_NDELAY