/* * Copyright (C) James R. Leu 2000 * jleu@mindspring.com * * This software is covered under the LGPL, for more * info check out http://www.gnu.org/copyleft/lgpl.html */ #ifndef _LDP_ASSERT_H_ #define _LDP_ASSERT_H_ #include #define LDP_ASSERT(x) assert(x) #endif