instat.c revision 1.1
1/* $NetBSD: instat.c,v 1.1 1996/05/17 19:31:53 chuck Exp $ */ 2 3/* 4 * bug routines -- assumes that the necessary sections of memory 5 * are preserved. 6 */ 7#include <sys/types.h> 8#include <machine/prom.h> 9 10/* returns 0 if no characters ready to read */ 11int 12mvmeprom_instat() 13{ 14 int ret; 15 16 MVMEPROM_CALL(MVMEPROM_INSTAT); 17 MVMEPROM_STATRET(ret); 18} 19