home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / prof_c / 05oslib / bios / memsize.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-08-11  |  216 b   |  16 lines

  1. /*
  2.  *    memsize -- get memory size
  3.  */
  4.  
  5. #include <dos.h>
  6. #include <local\std.h>
  7. #include <local\bioslib.h>
  8.  
  9. int
  10. memsize()
  11. {
  12.     union REGS inregs, outregs;
  13.  
  14.     return (int86(MEM_SIZE, &inregs, &outregs));
  15. }
  16.