From a07da54eca56d9195ee1a18a0ace9f7c26bff424 Mon Sep 17 00:00:00 2001 From: David Griffith Date: Thu, 25 May 2023 13:28:16 -0700 Subject: [PATCH] Removed blank line before ends of functions. --- src/dos/dosinput.c | 3 --- src/dos/dospic.c | 4 ---- src/dos/dossampl.c | 3 --- src/dos/dostext.c | 3 --- 4 files changed, 13 deletions(-) diff --git a/src/dos/dosinput.c b/src/dos/dosinput.c index 972190b..1c0061b 100644 --- a/src/dos/dosinput.c +++ b/src/dos/dosinput.c @@ -80,7 +80,6 @@ static void swap_colours(void) temp = text_fg; text_fg = text_bg; text_bg = temp; - } /* swap_colours */ @@ -386,7 +385,6 @@ static void last_char(void) { while (input.pos < input.length) cursor_right(); - } /* last_char */ @@ -696,7 +694,6 @@ static void get_next_entry(void) no_further: history.current = i; - } /* get_next_entry */ diff --git a/src/dos/dospic.c b/src/dos/dospic.c index 0568651..870073e 100644 --- a/src/dos/dospic.c +++ b/src/dos/dospic.c @@ -155,7 +155,6 @@ failure2: failure1: return FALSE; - } /* open_graphics_file */ @@ -179,7 +178,6 @@ static void close_graphics_file(void) #endif info = NULL; } - } /* close_graphics_file */ @@ -232,7 +230,6 @@ void reset_pictures(void) #endif info = NULL; } - } /* reset_pictures */ @@ -726,7 +723,6 @@ void os_draw_picture(int picture, int y, int x) { if (load_picture_info(picture)) draw_picture(y, x); - } /* os_draw_picture */ diff --git a/src/dos/dossampl.c b/src/dos/dossampl.c index 46b1af7..469b8e7 100644 --- a/src/dos/dossampl.c +++ b/src/dos/dossampl.c @@ -125,7 +125,6 @@ static void interrupt end_of_dma(void) if (sound_irq >= 8) outportb(0xa0, 0x20); inportb(sound_adr + 14); - } /* end_of_dma */ @@ -196,7 +195,6 @@ bool dos_init_sound(void) /* Indicate success */ return TRUE; - } /* init_sound */ @@ -226,7 +224,6 @@ void dos_reset_sound(void) #endif sound_adr = 0; } - } /* dos_reset_sound */ diff --git a/src/dos/dostext.c b/src/dos/dostext.c index 077fc86..6f58102 100644 --- a/src/dos/dostext.c +++ b/src/dos/dostext.c @@ -132,7 +132,6 @@ static int available_bios(void) label_ret: return (_AX); #endif - } /* available_bios */ @@ -496,7 +495,6 @@ void os_set_colour(int new_foreground, int new_background) /* Apply changes */ adjust_style(); - } /* os_set_colour */ @@ -534,7 +532,6 @@ void os_set_text_style(int new_style) /* Apply changes */ adjust_style(); - } /* os_set_text_style */ -- 2.34.1