home *** CD-ROM | disk | FTP | other *** search
/ Atari FTP / ATARI_FTP_0693.zip / ATARI_FTP_0693 / Mint / mntlib32.zoo / getdtabl.c < prev    next >
C/C++ Source or Header  |  1992-09-05  |  149b  |  14 lines

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