Files
bash/bash-20060316/CWRU/misc/iptrt.c
T
2011-12-07 09:05:27 -05:00

13 lines
187 B
C

#include <stdio.h>
main()
{
if (sizeof(char *) == sizeof(long))
printf("long\n");
else if (sizeof(char *) == sizeof(short))
printf("short\n");
else
printf("int\n");
exit(0);
}