home *** CD-ROM | disk | FTP | other *** search
/ Serving the Web / ServingTheWeb1995.disc1of1.iso / linux / slacksrce / d / libc / libc-4.6 / libc-4 / libc-linux / compat / __old_gdtbsz.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-02-17  |  305 b   |  15 lines

  1. #include <ansidecl.h>
  2. #include <unistd.h>
  3. #include "warning.h"
  4.  
  5. /* Return the maximum number of file descriptors
  6.    the current process could possibly have. Very old one. */
  7. int
  8. DEFUN_VOID(____old_getdtablesize)
  9. {
  10.   __LIBC_WARNING (getdtablesize);
  11.  
  12.   /* Very old value. We have now 256. */
  13.   return 32;
  14. }
  15.