home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / games / volume13 / engarde / part02 / sun40add.c < prev   
Text File  |  1992-02-11  |  470b  |  16 lines

  1. /*********************************************************************
  2.                                 Engarde
  3.                            File: sun40add.c
  4.  
  5.   This file is needed by SunOs 4.0x in order to compile correctly with
  6.   MOTIF libraries compiled with SunOs 4.1x .  Do not add this unless
  7.   necessary.
  8.  
  9.   Version 1:  1/9/92  (Bill James)
  10. *********************************************************************/
  11. char tolower(c)
  12. char c;
  13. {
  14.    return(c - 'A' + 'a');
  15. }
  16.