diff options
author | Adam Jackson <ajax@redhat.com> | 2008-10-03 15:33:47 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2008-10-03 17:51:19 -0400 |
commit | 31136b9467c2a17bbed4a51d6a6c41e3290bd236 (patch) | |
tree | b77fb4a81537cd8725e14486c07b2c78cf3dfa6c /os | |
parent | eaf3fdf97014c27aececa8505c2713e7c9a537fc (diff) |
Unexport MakeClientGrab{Imp,P}ervious
xtrap used to use these, but it's gone now. xtest still does but it's
linked statically.
Diffstat (limited to 'os')
-rw-r--r-- | os/connection.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/connection.c b/os/connection.c index a111fa5ba..e80b95eb8 100644 --- a/os/connection.c +++ b/os/connection.c @@ -1218,7 +1218,7 @@ AttendClient (ClientPtr client) /* make client impervious to grabs; assume only executing client calls this */ -_X_EXPORT void +void MakeClientGrabImpervious(ClientPtr client) { OsCommPtr oc = (OsCommPtr)client->osPrivate; @@ -1237,7 +1237,7 @@ MakeClientGrabImpervious(ClientPtr client) /* make client pervious to grabs; assume only executing client calls this */ -_X_EXPORT void +void MakeClientGrabPervious(ClientPtr client) { OsCommPtr oc = (OsCommPtr)client->osPrivate; |