home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Raytrace & Morphing / SOS-RAYTRACE.ISO / programm / source / radsrc22 / src / common / eputs.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-11-12  |  239 b   |  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.