home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / memory / emslib / emsinit.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-04-25  |  227 b   |  17 lines

  1.  
  2. /* --- EMSINIT.C --- */
  3.  
  4. #include <stdio.h>
  5. #include "emslib.h"
  6.  
  7. unsigned emsinit()
  8. {
  9.    unsigned err = 0;
  10.  
  11.    if ((err = emsavail()) == NOEMS)
  12.       return NOEMS;
  13.    if (err = _emsinit())
  14.       return err;
  15. }
  16.  
  17.