diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2009-04-22 13:26:40 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2009-04-28 16:03:56 +1000 |
commit | c2c515ead38d9a6c9eae0b83aa7a82208f177b7e (patch) | |
tree | 4bc6afcb2f10170282942dbbb0fd98055c865a72 /dix/swaprep.c | |
parent | 48573e7ea13e279593249036e6d30f1d7507882f (diff) |
dix: remove all but main() from main.c
All other functions are pushed into where they seemed to fit.
main.c is now linked separately into libmain.a and linked in by the various
DDXs.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'dix/swaprep.c')
-rw-r--r-- | dix/swaprep.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/dix/swaprep.c b/dix/swaprep.c index 9eb67654a..86242168f 100644 --- a/dix/swaprep.c +++ b/dix/swaprep.c @@ -1291,3 +1291,18 @@ WriteSConnSetupPrefix(ClientPtr pClient, xConnSetupPrefix *pcsp) SwapConnSetupPrefix(pcsp, &cspT); (void)WriteToClient(pClient, sizeof(cspT), (char *) &cspT); } + +/* + * Dummy entry for ReplySwapVector[] + */ + +void +ReplyNotSwappd( + ClientPtr pClient , + int size , + void * pbuf + ) +{ + FatalError("Not implemented"); +} + |