home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / NEWS / RADIANCE / SRC / COMMON / EPUTS.C < prev    next >
C/C++ Source or Header  |  1993-10-07  |  239b  |  14 lines

  1. /* Copyright (c) 1991 Regents of the University of California */
  2.  
  3. #ifndef lint
  4. static char SCCSid[] = "@(#)eputs.c 2.1 11/12/91 LBL";
  5. #endif
  6.  
  7. #include <stdio.h>
  8.  
  9. eputs(s)            /* error message */
  10. char  *s;
  11. {
  12.     fputs(s, stderr);
  13. }
  14.