wdvi

network DVI viewer
Log | Files | Refs

commit 1d8d59663d40f296e924467101e42da498221642
parent 14af2cbc05b06a229a4ca94a58b92f832cf41988
Author: Kyle Milz <krwmilz@gmail.com>
Date:   Thu, 19 Aug 2021 23:31:59 +0000

sort #includes

Diffstat:
Mdvi-draw.c | 14++++++--------
1 file changed, 6 insertions(+), 8 deletions(-)

diff --git a/dvi-draw.c b/dvi-draw.c @@ -27,26 +27,24 @@ NOTE: \*========================================================================*/ -#include "xdvi.h" -#include "dvi.h" #include <ctype.h> +#include <stdarg.h> -# include <X11/StringDefs.h> -# include <X11/Xaw/Label.h> - +#include <X11/StringDefs.h> +#include <X11/Xaw/Label.h> #include <X11/XKBlib.h> #define XBell(dpy, percent) XkbBell(dpy, mane.win, percent, (Atom) None) -#include <stdarg.h> +#include "xdvi.h" +#include "dvi.h" + static struct frame frame0; /* dummy head of list */ #ifdef TEXXET static struct frame *scan_frame; /* head frame for scanning */ #endif -#ifndef DVI_BUFFER_LEN #define DVI_BUFFER_LEN 512 -#endif static ubyte dvi_buffer[DVI_BUFFER_LEN]; static struct frame *current_frame;