156832Sralph /*- 2*63224Sbostic * Copyright (c) 1992, 1993 3*63224Sbostic * The Regents of the University of California. All rights reserved. 456832Sralph * 556832Sralph * This code is derived from software contributed to Berkeley by 656832Sralph * Ralph Campbell. 756832Sralph * 856832Sralph * %sccs.include.redist.c% 956832Sralph * 10*63224Sbostic * @(#)callvec.c 8.1 (Berkeley) 06/10/93 1156832Sralph */ 1256832Sralph 1356832Sralph #include <pmax/stand/dec_prom.h> 1456832Sralph 1556832Sralph const struct callback callvec = { 1656832Sralph (void *(*) __P((void *s1, void *s2, int n)))0, 1756832Sralph (void *(*) __P((void *s1, int c, int n)))0, 1856832Sralph (char *(*) __P((char *s1, char *s2)))DEC_PROM_STRCAT, 1956832Sralph (int (*) __P((char *s1, char *s2)))DEC_PROM_STRCMP, 2056832Sralph (char *(*) __P((char *s1, char *s2)))DEC_PROM_STRCPY, 2156832Sralph (int (*) __P((char *s1)))DEC_PROM_STRLEN, 2256832Sralph (char *(*) __P((char *s1, char *s2, int n)))0, 2356832Sralph (char *(*) __P((char *s1, char *s2, int n)))0, 2456832Sralph (int (*) __P((char *s1, char *s2, int n)))0, 2556832Sralph (int (*) __P((void)))DEC_PROM_GETCHAR, 2656832Sralph (char *(*) __P((char *s)))DEC_PROM_GETS, 2756832Sralph (int (*) __P((char *s)))DEC_PROM_PUTS, 2856832Sralph (int (*) __P((char *fmt, ...)))DEC_PROM_PRINTF, 2956832Sralph (int (*) __P((char *s, char *fmt, ...)))0, 3056832Sralph (int (*) __P((void)))0, 3156832Sralph (long (*) __P((char *s, char **endptr, int base)))0, 3256832Sralph (psig_t (*) __P((int sig, psig_t func)))0, 3356832Sralph (int (*) __P((int sig)))0, 3456832Sralph (long (*) __P((long *tod)))0, 3556832Sralph (int (*) __P((jmp_buf env)))0, 3656832Sralph (void (*) __P((jmp_buf env, int value)))0, 3756832Sralph (int (*) __P((void)))0, 3856832Sralph (int (*) __P((int b, void *buffer, int n)))0, 3956832Sralph (int (*) __P((int b, void *buffer, int n)))0, 4056832Sralph (int (*) __P((char *name, char *value)))DEC_PROM_SETENV2, 4156832Sralph (char *(*) __P((char *name)))DEC_PROM_GETENV2, 4256832Sralph (int (*) __P((char *name)))DEC_PROM_UNSETENV, 4356832Sralph (u_long (*) __P((int sn)))0, 4456832Sralph (void (*) __P((void)))0, 4556832Sralph (void (*) __P((int delay)))0, 4656832Sralph (void (*) __P((int value)))0, 4756832Sralph (void (*) __P((void)))0, 4856832Sralph (int (*) __P((void)))0, 4956832Sralph (int (*) __P((memmap *map)))0, 5056832Sralph (int (*) __P((int sn)))0, 5156832Sralph (int (*) __P((int sn)))0, 5256832Sralph (int (*) __P((int sn)))0, 5356832Sralph (void *)0, 5456832Sralph (int (*) __P((void)))0, 5556832Sralph (void (*) __P((int *v, int cnt)))0, 5656832Sralph (void (*) __P((void)))0, 5756832Sralph (tcinfo *(*) __P(()))0, 5856832Sralph (int (*) __P((char *cmd)))0, 5956832Sralph (void (*) __P((char cmd)))0, 6056832Sralph }; 61