home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / unixtools / util / c / message < prev    next >
Text File  |  1992-07-21  |  281b  |  15 lines

  1. /*      > C.Message     - general message printer */
  2.  
  3. #include <stdarg.h>
  4. #include <stdlib.h>
  5. #include <stdio.h>
  6. #include "utils.h"
  7.  
  8. void message (const char *format, ...)
  9. {
  10.         va_list ap;
  11.         va_start(ap,format);
  12.         vfprintf(stderr,format,ap);
  13.         va_end(ap);
  14. }
  15.