143001Sbostic /*- 243001Sbostic * Copyright (c) 1990 The Regents of the University of California. 343001Sbostic * All rights reserved. 443001Sbostic * 543001Sbostic * This code is derived from software contributed to Berkeley by 643001Sbostic * the Systems Programming Group of the University of Utah Computer 743001Sbostic * Science Department. 843001Sbostic * 943001Sbostic * %sccs.include.redist.c% 1043001Sbostic */ 1143001Sbostic 1243001Sbostic #if defined(LIBC_SCCS) && !defined(lint) 13*43066Sbostic static char sccsid[] = "@(#)eprintf.c 5.2 (Berkeley) 06/08/90"; 1443001Sbostic #endif /* LIBC_SCCS and not lint */ 1543001Sbostic 1643001Sbostic #include <stdio.h> 1743001Sbostic 1843001Sbostic /* This is used by the `assert' macro. */ 1943001Sbostic void __eprintf(string,line,filename)2043001Sbostic__eprintf(string, line, filename) 2143001Sbostic char *string; 2243001Sbostic int line; 2343001Sbostic char *filename; 2443001Sbostic { 2543001Sbostic (void)fprintf(stderr, string, line, filename); 2643001Sbostic } 27