1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-18 09:02:39 +00:00

asmbbt: Fix signature for bitblt. (#89)

This was an error in the conversion from K&R C prototypes.
This commit is contained in:
Bruce Mitchener 2020-12-17 02:11:50 +07:00 committed by GitHub
parent ff778f6044
commit 0d4d9a5368
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,7 +39,7 @@ static char *id = "$Id: asmbbt.c,v 1.3 1999/05/31 23:35:23 sybalsky Exp $ Copyri
#include "bitblt.h"
#include "pilotbbt.h"
void bitblt(DLword *srcbase, DLword dstbase, int sx, int dx, int w, int h, int srcbpl, int dstbpl,
void bitblt(DLword *srcbase, DLword *dstbase, int sx, int dx, int w, int h, int srcbpl, int dstbpl,
int backwardflg, int src_comp, int op, int gray, int num_gray, int curr_gray_line) {
new_bitblt_code;
}