diff options
author | Martin Willi <martin@strongswan.org> | 2009-04-24 14:08:42 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2009-04-24 14:08:42 +0000 |
commit | da17b0169ab4d6eee644b7a612ecbd58be7ae4a7 (patch) | |
tree | 5eb5548e1f9acfb589f443f273ae592b18fcad95 /src/libstrongswan/utils.c | |
parent | f032a6909a31eebf9f4a2ed092a75371f5b0c0c6 (diff) | |
download | strongswan-da17b0169ab4d6eee644b7a612ecbd58be7ae4a7.tar.bz2 strongswan-da17b0169ab4d6eee644b7a612ecbd58be7ae4a7.tar.xz |
added return_true/false() dummy functions
Diffstat (limited to 'src/libstrongswan/utils.c')
-rw-r--r-- | src/libstrongswan/utils.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/libstrongswan/utils.c b/src/libstrongswan/utils.c index dc5b16a30..75b02a865 100644 --- a/src/libstrongswan/utils.c +++ b/src/libstrongswan/utils.c @@ -148,6 +148,22 @@ void *return_null() } /** + * returns TRUE + */ +bool return_true() +{ + return TRUE; +} + +/** + * returns FALSE + */ +bool return_false() +{ + return FALSE; +} + +/** * nop operation */ void nop() |