wdvi

network DVI viewer
Log | Files | Refs

commit b76d02ee26b0cde22a870f6b649c90111714ce3e
parent 40debd29f9a7324f05f64614557c77cafcd3a15a
Author: Kyle Milz <krwmilz@gmail.com>
Date:   Sat, 11 Mar 2023 18:11:40 +0000

ansi function signatures

Diffstat:
Mspecial.c | 10++++------
1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/special.c b/special.c @@ -717,7 +717,7 @@ static int scanstack_len; static struct colorframe *scanstack_current; static void -init_page_colors() +init_page_colors(void) { int i; @@ -738,8 +738,7 @@ init_page_colors() static void -scan_bg_color(cp) - const char *cp; +scan_bg_color(const char *cp) { if (!resource._use_color) return; @@ -751,8 +750,7 @@ scan_bg_color(cp) } static void -scan_color(cp) - const char *cp; +scan_color(const char *cp) { const char *cp1 = cp + 6; @@ -800,7 +798,7 @@ scan_color(cp) } void -scan_color_eop() +scan_color_eop(void) { int i; const struct rgb *prev;