xref: /csrg-svn/sys/pmax/stand/libsa/callvec.c (revision 56832)
1*56832Sralph /*-
2*56832Sralph  * Copyright (c) 1992 The Regents of the University of California.
3*56832Sralph  * All rights reserved.
4*56832Sralph  *
5*56832Sralph  * This code is derived from software contributed to Berkeley by
6*56832Sralph  * Ralph Campbell.
7*56832Sralph  *
8*56832Sralph  * %sccs.include.redist.c%
9*56832Sralph  *
10*56832Sralph  *	@(#)callvec.c	7.1 (Berkeley) 11/15/92
11*56832Sralph  */
12*56832Sralph 
13*56832Sralph #include <pmax/stand/dec_prom.h>
14*56832Sralph 
15*56832Sralph const struct callback callvec = {
16*56832Sralph 	(void *(*) __P((void *s1, void *s2, int n)))0,
17*56832Sralph 	(void *(*) __P((void *s1, int c, int n)))0,
18*56832Sralph 	(char *(*) __P((char *s1, char *s2)))DEC_PROM_STRCAT,
19*56832Sralph 	(int (*) __P((char *s1, char *s2)))DEC_PROM_STRCMP,
20*56832Sralph 	(char *(*) __P((char *s1, char *s2)))DEC_PROM_STRCPY,
21*56832Sralph 	(int (*) __P((char *s1)))DEC_PROM_STRLEN,
22*56832Sralph 	(char *(*) __P((char *s1, char *s2, int n)))0,
23*56832Sralph 	(char *(*) __P((char *s1, char *s2, int n)))0,
24*56832Sralph 	(int (*) __P((char *s1, char *s2, int n)))0,
25*56832Sralph 	(int (*) __P((void)))DEC_PROM_GETCHAR,
26*56832Sralph 	(char *(*) __P((char *s)))DEC_PROM_GETS,
27*56832Sralph 	(int (*) __P((char *s)))DEC_PROM_PUTS,
28*56832Sralph 	(int (*) __P((char *fmt, ...)))DEC_PROM_PRINTF,
29*56832Sralph 	(int (*) __P((char *s, char *fmt, ...)))0,
30*56832Sralph 	(int (*) __P((void)))0,
31*56832Sralph 	(long (*) __P((char *s, char **endptr, int base)))0,
32*56832Sralph 	(psig_t (*) __P((int sig, psig_t func)))0,
33*56832Sralph 	(int (*) __P((int sig)))0,
34*56832Sralph 	(long (*) __P((long *tod)))0,
35*56832Sralph 	(int (*) __P((jmp_buf env)))0,
36*56832Sralph 	(void (*) __P((jmp_buf env, int value)))0,
37*56832Sralph 	(int (*) __P((void)))0,
38*56832Sralph 	(int (*) __P((int b, void *buffer, int n)))0,
39*56832Sralph 	(int (*) __P((int b, void *buffer, int n)))0,
40*56832Sralph 	(int (*) __P((char *name, char *value)))DEC_PROM_SETENV2,
41*56832Sralph 	(char *(*) __P((char *name)))DEC_PROM_GETENV2,
42*56832Sralph 	(int (*) __P((char *name)))DEC_PROM_UNSETENV,
43*56832Sralph 	(u_long (*) __P((int sn)))0,
44*56832Sralph 	(void (*) __P((void)))0,
45*56832Sralph 	(void (*) __P((int delay)))0,
46*56832Sralph 	(void (*) __P((int value)))0,
47*56832Sralph 	(void (*) __P((void)))0,
48*56832Sralph 	(int (*) __P((void)))0,
49*56832Sralph 	(int (*) __P((memmap *map)))0,
50*56832Sralph 	(int (*) __P((int sn)))0,
51*56832Sralph 	(int (*) __P((int sn)))0,
52*56832Sralph 	(int (*) __P((int sn)))0,
53*56832Sralph 	(void *)0,
54*56832Sralph 	(int (*) __P((void)))0,
55*56832Sralph 	(void (*) __P((int *v, int cnt)))0,
56*56832Sralph 	(void (*) __P((void)))0,
57*56832Sralph 	(tcinfo *(*) __P(()))0,
58*56832Sralph 	(int (*) __P((char *cmd)))0,
59*56832Sralph 	(void (*) __P((char cmd)))0,
60*56832Sralph };
61