1 /* This header file is in the public domain */ 2 #ifndef _DNET_H_ 3 #define _DNET_H_ 4 5 /* This header file takes care of hiding the variations in 6 * libdnet names -- in particular, libdnet is libdumbnet 7 * on Debian, and dnet-config doesn't hide this :( --CPK. 8 */ 9 #ifdef HAVE_DUMBNET 10 #include <dumbnet.h> 11 #endif 12 13 #endif