9 lines
160 B
C
9 lines
160 B
C
|
|
#include <stdio.h>
|
||
|
|
#include <sys/stat.h>
|
||
|
|
#include <stddef.h>
|
||
|
|
|
||
|
|
int main() {
|
||
|
|
printf("st_size offset: %zu\n", offsetof(struct stat, st_size));
|
||
|
|
return 0;
|
||
|
|
}
|