Xref: news-dnh.mv.net comp.os.msdos.djgpp:4544 From: Eric Rudd Newsgroups: comp.os.msdos.djgpp Subject: Bug in bios.h Date: 19 Jan 1996 15:31:21 GMT Organization: CyberOptics Corp Lines: 33 Message-ID: <4dodg9$f01@hagar.cyberoptics.com> NNTP-Posting-Host: rudd.cyberoptics.com To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp This is a multi-part message in MIME format. ---------------------------------115812336814597 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=us-ascii There is a bug in DJGPP v2 beta 9, in the prototype for _bios_keybrd, in the file include/bios.h. Attached is the "diff" report for correcting the problem. -Eric Rudd ---------------------------------115812336814597 Content-Transfer-Encoding: 7bit Content-Type: text/plain *** \brief\backup\bios.h Mon Oct 9 06:00:00 1995 --- bios.h Thu Jan 18 20:56:34 1996 *************** *** 93,97 **** #define _bios_printer(_c, _p, _d) ((unsigned)biosprint(_c, _d, _p)) #define _bios_serialcom(_c, _p, _d) ((unsigned)bioscom(_c, _d, _p)) ! #define _bios_keybrd(_c) ((unsigned)bioskey(c)) unsigned _bios_disk(unsigned _cmd, struct _diskinfo_t *_di); --- 93,97 ---- #define _bios_printer(_c, _p, _d) ((unsigned)biosprint(_c, _d, _p)) #define _bios_serialcom(_c, _p, _d) ((unsigned)bioscom(_c, _d, _p)) ! #define _bios_keybrd(_c) ((unsigned)bioskey(_c)) unsigned _bios_disk(unsigned _cmd, struct _diskinfo_t *_di); ---------------------------------115812336814597--