From c4656961fb8cdd0b76753333d9e0bc0ef7b77a13 Mon Sep 17 00:00:00 2001 From: Brett Gordon Date: Sun, 2 Oct 2016 16:24:52 -0400 Subject: [PATCH] coco3: add prototypes for queue access functions --- Kernel/platform-coco3/config.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Kernel/platform-coco3/config.h b/Kernel/platform-coco3/config.h index d4a3d051..0c56c13a 100644 --- a/Kernel/platform-coco3/config.h +++ b/Kernel/platform-coco3/config.h @@ -98,6 +98,8 @@ extern unsigned char vt_map( unsigned char c ); #define CONFIG_NET_NATIVE /* redefine tty queue primitives to use our banking ones */ +void putq( unsigned char *ptr, char c ); +unsigned char getq( unsigned *ptr ); #define CONFIG_INDIRECT_QUEUES typedef unsigned char *queueptr_t; #define GETQ(p) getq(p) -- 2.34.1