summaryrefslogtreecommitdiff
path: root/lib/tevent/tevent_epoll.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-04-18 12:47:00 +1000
committerAndrew Tridgell <tridge@samba.org>2010-04-18 15:00:38 +1000
commit2550bbc981a25b5a37525d99201498b81bb93572 (patch)
tree00c06cca5c7053801fd5e93e15309ef17e417feb /lib/tevent/tevent_epoll.c
parent805f651dbf70f90ea7dab192cbe498b41fc47dc3 (diff)
downloadsamba-2550bbc981a25b5a37525d99201498b81bb93572.tar.gz
samba-2550bbc981a25b5a37525d99201498b81bb93572.tar.bz2
samba-2550bbc981a25b5a37525d99201498b81bb93572.zip
tevent: mark backend init fns as _PRIVATE_
these are not supposed to be exposed in the library
Diffstat (limited to 'lib/tevent/tevent_epoll.c')
-rw-r--r--lib/tevent/tevent_epoll.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tevent/tevent_epoll.c b/lib/tevent/tevent_epoll.c
index 7c7f389d5b..3b99d47d9b 100644
--- a/lib/tevent/tevent_epoll.c
+++ b/lib/tevent/tevent_epoll.c
@@ -437,7 +437,7 @@ static const struct tevent_ops epoll_event_ops = {
.loop_wait = tevent_common_loop_wait,
};
-bool tevent_epoll_init(void)
+_PRIVATE_ bool tevent_epoll_init(void)
{
return tevent_register_backend("epoll", &epoll_event_ops);
}