home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Web / Servers / apache-1.2.4-MIHS / original-source / src / explain.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-11-03  |  308 b   |  15 lines

  1. #include <stdio.h>
  2. #include <stdarg.h>
  3. #include "explain.h"
  4.  
  5. void _Explain(const char *szFile,int nLine,const char *szFmt,...)
  6.     {
  7.     va_list vlist;
  8.  
  9.     fprintf(stderr,"%s(%d): ",szFile,nLine);
  10.     va_start(vlist,szFmt);
  11.     vfprintf(stderr,szFmt,vlist);
  12.     va_end(vlist);
  13.     fputc('\n',stderr);
  14.     }
  15.