diff options
author | dequis <dx@dxzone.com.ar> | 2015-10-30 07:44:37 -0300 |
---|---|---|
committer | dequis <dx@dxzone.com.ar> | 2015-10-30 07:44:37 -0300 |
commit | 9516bb6e8bd0349594b5f3faf125190f622e673a (patch) | |
tree | 1fbe60def48343619c0d58b34a8841f4e8765271 | |
parent | 2e99039dbc86bbf04320fdb2cf652e9c71a58af2 (diff) |
tests: Define a stub sighandler_shutdown_setup() to allow linking
I'm sure that some day the tests will be useful, not just an annoyance.
Some day.
-rw-r--r-- | tests/check.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/check.c b/tests/check.c index 9b97f884..25e27b49 100644 --- a/tests/check.c +++ b/tests/check.c @@ -43,6 +43,11 @@ double gettime() return((double) time->tv_sec + (double) time->tv_usec / 1000000); } +void sighandler_shutdown_setup() +{ + /* no-op. originally defined in unix.c, needed by bitlbee.c */ +} + /* From check_util.c */ Suite *util_suite(void); |