28 lines
417 B
C
28 lines
417 B
C
/*
|
|
* @(#)prom_mayget.c 1.1 94/10/31 Copyright (c) 1985 by Sun Microsystems, Inc.
|
|
*/
|
|
|
|
/*
|
|
* Copyright (c) 1990 by Sun Microsystems, Inc.
|
|
*/
|
|
|
|
#include "promcommon.h"
|
|
|
|
#ifdef OPENPROMS
|
|
int
|
|
prom_mayget()
|
|
{
|
|
char c;
|
|
|
|
switch (obp_romvec_version) {
|
|
|
|
case OBP_V0_ROMVEC_VERSION:
|
|
return (OBP_V0_MAYGET());
|
|
default:
|
|
if (OBP_V2_READ(OBP_V2_STDIN, &c, 1) == 1)
|
|
return ((int)c);
|
|
return (-1);
|
|
}
|
|
}
|
|
#endif OPENPROMS
|