FECs are now inserted in the tree upon creation
[mpls-ldp-portable.git] / common / mpls_assert.h
blobb5df79ecbbb29be220184076b4074287430dd81a
2 /*
3 * Copyright (C) James R. Leu 2002
4 * jleu@mindspring.com
6 * This software is covered under the LGPL, for more
7 * info check out http://www.gnu.org/copyleft/lgpl.html
8 */
10 #ifndef _MPLS_ASSERT_H_
11 #define _MPLS_ASSERT_H_
13 #include <assert.h>
15 #define MPLS_ASSERT(x) assert(x)
17 #endif