DEBSOURCES
Skip Quicknav
sources / dsniff / 2.5a2-1 / common.h
12345678910
#include "config.h" #ifndef MAX # define MAX(X, Y) (((X) < (Y)) ? (Y) : (X)) #endif #ifndef MIN # define MIN(X, Y) (((X) < (Y)) ? (X) : (Y)) #endif