os: unexport ListenOnOpenFD()

Not used by any modules, so no need to keep it exported.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1790>
This commit is contained in:
Enrico Weigelt, metux IT consult 2025-02-13 17:12:22 +01:00 committed by Marge Bot
parent d637e1d284
commit 9b0c3c62f2
3 changed files with 2 additions and 2 deletions

View File

@ -47,6 +47,7 @@
#include <X11/Xproto.h>
#include "mi/mi_priv.h"
#include "os/client_priv.h"
#include "misc.h"
#include "windowstr.h"

View File

@ -133,8 +133,6 @@ extern _X_EXPORT void IgnoreClient(ClientPtr /*client */ );
extern _X_EXPORT void AttendClient(ClientPtr /*client */ );
extern _X_EXPORT void ListenOnOpenFD(int /* fd */ , int /* noxauth */ );
extern _X_EXPORT CARD32 GetTimeInMillis(void);
extern _X_EXPORT CARD64 GetTimeInMicros(void);

View File

@ -41,5 +41,6 @@ const char *ClientAuthorized(struct _Client *client,
unsigned int string_n,
char *auth_string);
Bool AddClientOnOpenFD(int fd);
void ListenOnOpenFD(int fd, int noxauth);
#endif /* _XSERVER_DIX_CLIENT_PRIV_H */