From ba5996ef3b3efe73e81a4187f220b5f72ba0aac9 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Tue, 12 Mar 2024 13:49:37 +0100 Subject: [PATCH] os: unexport ListenToAllClients() It's just called by DIX, not by any drivers/modules, so no need to export it. Signed-off-by: Enrico Weigelt, metux IT consult Part-of: (cherry picked from commit a0b69624f779aa4f5ef8cdec15d24e89063f49a5) --- include/os.h | 2 -- os/osdep.h | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/os.h b/include/os.h index 2a39d49bd..9ba569ae6 100644 --- a/include/os.h +++ b/include/os.h @@ -150,8 +150,6 @@ static inline void RemoveNotifyFd(int fd) (void) SetNotifyFd(fd, NULL, X_NOTIFY_NONE, NULL); } -extern _X_EXPORT void ListenToAllClients(void); - extern _X_EXPORT void IgnoreClient(ClientPtr /*client */ ); extern _X_EXPORT void AttendClient(ClientPtr /*client */ ); diff --git a/os/osdep.h b/os/osdep.h index b5d15df0a..2687f0ee9 100644 --- a/os/osdep.h +++ b/os/osdep.h @@ -247,4 +247,6 @@ void MakeClientGrabImpervious(ClientPtr client); int OnlyListenToOneClient(ClientPtr client); +void ListenToAllClients(void); + #endif /* _OSDEP_H_ */