Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 #include <stdio.h> | 1 #include <stdio.h> |
| 2 | 2 |
| 3 int main(int argc, char *argv[]) { | 3 int main() { |
| 4 if (sizeof(void*) == 4) { | 4 if (sizeof(void*) == 4) { |
| 5 printf("Running Win32\n"); | 5 printf("Running Win32\n"); |
| 6 } else if (sizeof(void*) == 8) { | 6 } else if (sizeof(void*) == 8) { |
| 7 printf("Running x64\n"); | 7 printf("Running x64\n"); |
| 8 } else { | 8 } else { |
| 9 printf("Unexpected platform\n"); | 9 printf("Unexpected platform\n"); |
| 10 } | 10 } |
| 11 return 0; | 11 return 0; |
| 12 } | 12 } |
| OLD | NEW |