aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHelge Deller <deller@gmx.de>2023-10-31 08:36:04 +0100
committerHelge Deller <deller@gmx.de>2023-10-31 08:37:06 +0100
commit5c53c0cbc512193d62f3e80c1a0fabcb3da8c8a8 (patch)
treeafbae6a248e43bbc355de6e91c60fe198ee24340
parent1ec6dbb510259491a7f51b74e60edcbcb49fbabf (diff)
downloadseabios-hppa-5c53c0cbc512193d62f3e80c1a0fabcb3da8c8a8.zip
seabios-hppa-5c53c0cbc512193d62f3e80c1a0fabcb3da8c8a8.tar.gz
seabios-hppa-5c53c0cbc512193d62f3e80c1a0fabcb3da8c8a8.tar.bz2
parisc: Avoid compiler warning for handle_16()
Signed-off-by: Helge Deller <deller@gmx.de>
-rw-r--r--src/parisc/lasips2.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parisc/lasips2.c b/src/parisc/lasips2.c
index a7bb9fe..b7d0083 100644
--- a/src/parisc/lasips2.c
+++ b/src/parisc/lasips2.c
@@ -26,6 +26,7 @@ int lasips2_kbd_in(char *c, int max)
}
while(count < max) {
+ extern void VISIBLE16 handle_16(struct bregs *regs);
// check if some key is queued up already
regs.ah = 0x11;
regs.flags = 0;