home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / lib / mntlib44.zoo / mntlib / getdtabl.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-10-12  |  201 b   |  16 lines

  1. #include <stdio.h>
  2. #include <mintbind.h>
  3. #include <support.h>
  4. #include <unistd.h>
  5.  
  6. extern int __mint;
  7.  
  8. int
  9. getdtablesize()
  10. {
  11.     if (__mint < 7)
  12.         return FOPEN_MAX;
  13.  
  14.     return (int)Sysconf(_SC_OPEN_MAX);
  15. }
  16.