diff options
author | dscho <dscho> | 2001-09-24 22:02:28 +0000 |
---|---|---|
committer | dscho <dscho> | 2001-09-24 22:02:28 +0000 |
commit | 5c438e3fb2d98f6aa36b58610ed9d871a41cf6f1 (patch) | |
tree | 32384646ca0bfcd2240ef1152fb605934b17da56 /miregion.c | |
parent | fa85c12aa9f552aeafca4099467439d4cf434b79 (diff) | |
download | libtdevnc-5c438e3fb2d98f6aa36b58610ed9d871a41cf6f1.tar.gz libtdevnc-5c438e3fb2d98f6aa36b58610ed9d871a41cf6f1.zip |
bugfix: cursor (works now without xcursor encoding)
Diffstat (limited to 'miregion.c')
-rw-r--r-- | miregion.c | 15 |
1 files changed, 11 insertions, 4 deletions
@@ -50,10 +50,10 @@ SOFTWARE. #include <stdio.h> #include <stdlib.h> -#include "miscstruct.h" -#include "regionstr.h" -#include "Xprotostr.h" -#include "gc.h" +#include "Xserver/miscstruct.h" +#include "Xserver/regionstr.h" +#include "X11/Xprotostr.h" +#include "Xserver/gc.h" #if defined (__GNUC__) && !defined (NO_INLINES) #define INLINE __inline @@ -61,6 +61,13 @@ SOFTWARE. #define INLINE #endif +#undef xalloc +#undef xrealloc +#undef xfree +#define xalloc malloc +#define xrealloc realloc +#define xfree free + /* * hack until callers of these functions can deal with out-of-memory */ |