13 lines
169 B
C
13 lines
169 B
C
|
#include <sys/types.h>
|
||
|
#include <sys/stat.h>
|
||
|
#include <unistd.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main(int argc, char * argv[])
|
||
|
{
|
||
|
|
||
|
printf("%ld", sizeof(off_t));
|
||
|
|
||
|
return 0;
|
||
|
}
|