mirror of https://github.com/nodejs/node.git
13 lines
244 B
C
13 lines
244 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int main(int argc, char *argv[]) {
|
||
|
if (sizeof(void*) == 4) {
|
||
|
printf("Running Win32\n");
|
||
|
} else if (sizeof(void*) == 8) {
|
||
|
printf("Running x64\n");
|
||
|
} else {
|
||
|
printf("Unexpected platform\n");
|
||
|
}
|
||
|
return 0;
|
||
|
}
|