1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-14 15:36:34 +00:00

fix warning: a function declaration without a prototype is deprecated in all versions of C

This commit is contained in:
Nick Briggs 2022-12-11 19:09:21 -08:00
parent 4a82b6c549
commit 202db168a9

View File

@ -267,14 +267,14 @@ void overlay_mouse_up(int newx, int newy)
extern int LastCursorX, LastCursorY;
void overlay_mouse_down() {
void overlay_mouse_down(void) {
pr_set_plane_group(TrueColorFb, PIXPG_OVERLAY_ENABLE);
pr_rop(OverlaySave, 0, 0, 16, 16, PIX_SRC, TrueColorFb, LastCursorX, LastCursorY);
pr_set_plane_group(TrueColorFb, PIXPG_24BIT_COLOR);
} /* end overlay_mouse_down */
void truecolor_before_exit() {
void truecolor_before_exit(void) {
if (Inited_TrueColor) {
{ /* fill region */
int h, w;
@ -317,7 +317,7 @@ extern int Video_OnOff_Flg;
static int video_onoff;
#endif /* VIDEO */
void truecolor_before_raid() {
void truecolor_before_raid(void) {
int size;
if (Inited_TrueColor) {
@ -363,7 +363,7 @@ void truecolor_before_raid() {
} /* end truecolor_before_raid */
void truecolor_after_raid() {
void truecolor_after_raid(void) {
int size, mmapstat;
if (Inited_TrueColor) {