home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / OBJASM.ZIP / OUFMTERR.C < prev    next >
C/C++ Source or Header  |  1990-02-25  |  194b  |  11 lines

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include "o.h"
  4.  
  5. void fmt_error( error_msg )
  6.     char    *error_msg;
  7. {
  8.     fprintf( stderr, "Obj format error: %s", error_msg );
  9.     exit( 5 );
  10. }
  11.