/* * Copyright (c) 2002-2004 Sendmail, Inc. and its suppliers. * All rights reserved. * * By using this file, you agree to the terms and conditions set * forth in the LICENSE file which can be found at the top level of * the sendmail distribution. * * $Id: param.h,v 1.5 2005/06/16 00:09:34 ca Exp $ */ #ifndef SM_PARAM_H #define SM_PARAM_H 1 #include "sm/generic.h" #if HAVE_SYS_PARAM_H # include #endif #ifndef powerof2 # define powerof2(x) ((((x) - 1) & (x)) == 0) #endif #endif /* ! SM_PARAM_H */