In article <[EMAIL PROTECTED]> you write: > typedef unsigned blkcnt_t;
Looking at the manpage for stat(2), it looks like #include <sys/types.h> #include <sys/stat.h> typedef quad_t blkcnt_t; is appropriate. On my linux system stat.st_blocks is a blkcnt_t; with OSX, stat.st_blocks is a quad_t. -- Dave Meyer [EMAIL PROTECTED]
