Current Path : /usr/src/contrib/ntp/util/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //usr/src/contrib/ntp/util/longsize.c |
#include <stdio.h> main() { if (sizeof(long) == 8) { printf("-DLONG8\n"); } else if (sizeof(long) == 4) { printf("-DLONG4\n"); } exit(0); }