From: Brett Gordon Date: Sun, 2 Oct 2016 20:24:52 +0000 (-0400) Subject: coco3: add prototypes for queue access functions X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=c4656961fb8cdd0b76753333d9e0bc0ef7b77a13;p=FUZIX.git coco3: add prototypes for queue access functions --- 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)