constants.c: sizeof int and short

This commit is contained in:
root 2025-05-07 08:04:01 +00:00
parent d190827141
commit 5c129207ae

View file

@ -9,4 +9,6 @@ void main() {
printf("F_GETFL %d\n", F_GETFL);
printf("F_SETFL %d\n", F_SETFL);
printf("O_NONBLOCK %d\n", O_NONBLOCK);
printf("sizeof(int) %d\n", sizeof(int));
printf("sizeof(short) %d\n", sizeof(short));
}