From a9c81c092b4427bf87ba0ffbb0cfd599b7d6ccfe Mon Sep 17 00:00:00 2001 From: ed Date: Sat, 29 Oct 2016 15:04:24 +0000 Subject: Add posix_tnode to . In r307227 I've refactored the binary search tree functions to use the posix_tnode type. As this change does not apply cleanly to this version of FreeBSD, only make the change that matters: add the definition of the newly introduced type. This will ease source-level compatibility going forward. --- include/search.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include') diff --git a/include/search.h b/include/search.h index 4e4606f..40b736a 100644 --- a/include/search.h +++ b/include/search.h @@ -43,6 +43,8 @@ struct que_elem { struct que_elem *next; struct que_elem *prev; }; +#else +typedef void posix_tnode; #endif __BEGIN_DECLS -- cgit v1.1