summaryrefslogtreecommitdiff
path: root/test/select-no-nd.c
blob: 8eb3735ab7e71eafbab72dfcb328067b00cca30b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "select-common.c"

static css_error get_libcss_node_data(void *pw, void *n,
		void **libcss_node_data)
{
	UNUSED(pw);
	UNUSED(n);

	/* Test case were node data is deleted, by not passing any node data */
	*libcss_node_data = NULL;

	return CSS_OK;
}