repo.or.cz
/
mpls-ldp-portable.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No longer do we use the ifmgr to walk the addresses attached to this
[mpls-ldp-portable.git]
/
common
/
mpls_assert.h
blob
b5df79ecbbb29be220184076b4074287430dd81a
1
2
/*
3
* Copyright (C) James R. Leu 2002
4
* jleu@mindspring.com
5
*
6
* This software is covered under the LGPL, for more
7
* info check out http://www.gnu.org/copyleft/lgpl.html
8
*/
9
10
#ifndef _MPLS_ASSERT_H_
11
#define _MPLS_ASSERT_H_
12
13
#include <assert.h>
14
15
#define MPLS_ASSERT(x) assert(x)
16
17
#endif