check64bit.c

来自「改善linux指令 "tcpdump" 效能的免費open source程式」· C语言 代码 · 共 17 行

C
17
字号
#include <stdio.h>/* * Because of potential incompatibility between 32-bit and 64-bit pcap files * check if this is a 64-bit compile and if so, emit a helpful message. */main () {    if (sizeof (long) != 4 || getenv("TEST64BIT")) {	fprintf(stderr,	    "\n\nIf output from Gulp is not compatible with "	    "tcpdump or wireshark,\nPlease see: "	    "http://staff.washington.edu/corey/gulp/gulp.html#64bit\n\n\n");	sleep(5);	}    }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?