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