diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-03-01 18:10:27 -0800 |
---|---|---|
committer | Ulrich Sibiller <uli42@gmx.de> | 2016-10-19 21:40:26 +0200 |
commit | e18ccaaae7fdf039114eb10e92d8339031530816 (patch) | |
tree | 29e0488cc1c28521245822d8a8a4d33fe3d4a6d3 /nx-X11/lib | |
parent | 2393e1acdbf709c5797a37ffca6bfa9093876c0b (diff) | |
download | nx-libs-e18ccaaae7fdf039114eb10e92d8339031530816.tar.gz nx-libs-e18ccaaae7fdf039114eb10e92d8339031530816.tar.bz2 nx-libs-e18ccaaae7fdf039114eb10e92d8339031530816.zip |
Assume size_t is always available, since it was defined in C89
Don't provide a fallback definition #ifdef X_NOT_POSIX anymore.
We already use size_t throughout the rest of Xlib, just had this
one instance left in XKBGAlloc.c of a fallback definition.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Backported-to-NX-by: Ulrich Sibiller <uli42@gmx.de>
Diffstat (limited to 'nx-X11/lib')
-rw-r--r-- | nx-X11/lib/X11/XKBGAlloc.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/nx-X11/lib/X11/XKBGAlloc.c b/nx-X11/lib/X11/XKBGAlloc.c index d9682f588..74cadaee0 100644 --- a/nx-X11/lib/X11/XKBGAlloc.c +++ b/nx-X11/lib/X11/XKBGAlloc.c @@ -37,13 +37,6 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE. #include <nx-X11/extensions/XKBgeom.h> #include <nx-X11/extensions/XKBproto.h> - -#ifdef X_NOT_POSIX -#define Size_t unsigned int -#else -#define Size_t size_t -#endif - /***====================================================================***/ static void @@ -464,7 +457,7 @@ _XkbGeomAlloc( XPointer * old, unsigned short * num, unsigned short * total, int num_new, - Size_t sz_elem) + size_t sz_elem) { if (num_new<1) return Success; |