BTW, I found the following much easier to read (and it works on all compilers):

#include <sys/types.h>

int main(int argc, char **argv)
{
  /* Cause a compile-time error if off_t is smaller than 64 bits */
  int off_t_is_large[ sizeof(off_t) >= 8 ? 1 : -1 ];
  return 0;
}


-- 
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]

Reply via email to