uname(1) now reports whether the system is 32-bit or 64-bit.

This commit is contained in:
Jonas 'Sortie' Termansen 2011-12-01 15:30:17 +01:00
parent ae1c157445
commit f5b46a89ed
1 changed files with 1 additions and 1 deletions

View File

@ -2,6 +2,6 @@
int main(int argc, char* argv[])
{
printf("Sortix\n");
printf("Sortix %zu bit\n", sizeof(size_t) * 8UL);
return 0;
}