1 static char Sccsid[] = "@(#)userexit.c 1.2 02/15/87"; 2 /* 3 Default userexit routine for fatal and setsig. 4 User supplied userexit routines can be used for logging. 5 */ 6 7 userexit(code) 8 { 9 return(code); 10 } 11