1 /* $NetBSD: promlib.h,v 1.1 2026/07/19 01:02:59 thorpej Exp $ */ 2 3 /* 4 * Wrappers around the Sun3 monitor functions to that they may be 5 * spelled and pronounced the same on Sun2 (which uses naming aligned 6 * with SPARC) and Sun3. 7 * 8 * Written by Jason R. Thorpe, July 2026. 9 * Public domain. 10 */ 11 12 #ifndef _SUN3_PROMLIB_H_ 13 #define _SUN3_PROMLIB_H_ 14 15 #include <machine/mon.h> 16 17 #define prom_abort sunmon_abort 18 #define prom_printf mon_printf 19 20 #endif /* _SUN3_PROMLIB_H_ */ 21