Makefile: Add default LDFLAGS and make it overridable
[nagios-reports-module.git] / test_utils.c
blob7726afbc764d95b9934ca6220f92829dec055862
1 #include <stdlib.h>
2 #include "nagios/objects.h"
3 #include "nagios/nagios.h"
5 /*
6 * These only exist so dt_depth_*() functions
7 * in utils.c can fail gracefully
8 */
9 host *find_host(char *h)
11 return NULL;
14 service *find_service(char *h, char *s)
16 return NULL;
19 host *host_list = NULL, *host_list_tail = NULL;
20 service *service_list = NULL, *service_list_tail = NULL;
21 sched_info scheduling_info = { 0 };