home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C / Applications / Python 1.4 / stdwin / Gen / wperror.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-12-21  |  229 b   |  17 lines  |  [TEXT/CWIE]

  1. /* STDWIN -- UNIVERSAL WPERROR. */
  2.  
  3. #include "tools.h"
  4. #include "stdwin.h"
  5.  
  6. /* STDWIN equivalent of perror(). */
  7.  
  8. void
  9. wperror(name)
  10.     char *name;
  11. {
  12.     char buf[256];
  13.     
  14.     sprintf(buf, "%s: Error %d.", name, errno);
  15.     wmessage(buf);
  16. }
  17.