All pastes #2047050 Raw Edit

Someone

public text v1 · immutable
#2047050 ·published 2011-04-16 05:33 UTC
rendered paste body
#include <stdio.h>
#include <pcap.h>

main(){
#ifdef _NET_BPF_H_
	printf("net/bpf.h is included.\n");
#else
	printf("net/bpf.h is *not* included.\n");
#endif
}