home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / zip / telecomm / t100.zoo / normal.c < prev    next >
C/C++ Source or Header  |  1991-09-15  |  473b  |  34 lines

  1. /*
  2.  *    normal.c
  3.  */
  4.  
  5. #ifndef lint
  6. static char *rcsid_normal_c = "$Id: normal.c,v 1.0 1991/09/12 20:32:56 rosenkra Exp $";
  7. #endif
  8.  
  9. /*
  10.  * $Log: normal.c,v $
  11.  * Revision 1.0  1991/09/12  20:32:56  rosenkra
  12.  * Initial revision
  13.  *
  14.  */
  15.  
  16.  
  17. /*------------------------------*/
  18. /*    fnt_normal        */
  19. /*------------------------------*/
  20. void fnt_normal ()
  21. {
  22.  
  23. /*
  24.  *    set font to normal
  25.  */
  26.  
  27.     extern int    load_msp_font ();
  28.  
  29.     load_msp_font (2, (short *) 0);
  30. }
  31.  
  32.  
  33.  
  34.