home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / pub / test / text / ckcoff_t.c < prev    next >
C/C++ Source or Header  |  2020-01-01  |  104b  |  8 lines

  1. #include <stdio.h>
  2. #include <sys/types.h>
  3. int
  4. main() {
  5.     printf("%d\n",sizeof(off_t));
  6.     exit(0);
  7. }
  8.