mirror of
https://github.com/SwallowOS/xorg_lib_libXdmcp
synced 2025-11-09 09:35:46 +08:00
Use stdint.h instead of limits.h for UINT*_MAX definitions
While Solaris allows either one, C99 only requires them in stdint.h and some platforms don't include them via limits.h Corrects tinderbox reported errors on Fedora 11 build machine: http://tinderbox.x.org/builds/2010-05-06-0019/logs/libXdmcp/#build AA32.c: In function 'XdmcpAllocARRAY32': AA32.c:47: error: 'UINT8_MAX' undeclared (first use in this function) AA8.c: In function 'XdmcpAllocARRAY8': AA8.c:47: error: 'UINT16_MAX' undeclared (first use in this function) Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Compiles clean on GNU/Linux AMD64 Tested-by: Gaetan Nadon <memsize@videotron.ca>
This commit is contained in:
2
AA16.c
2
AA16.c
@@ -36,7 +36,7 @@ in this Software without prior written authorization from The Open Group.
|
||||
#include <X11/X.h>
|
||||
#include <X11/Xmd.h>
|
||||
#include <X11/Xdmcp.h>
|
||||
#include <limits.h>
|
||||
#include <stdint.h>
|
||||
|
||||
int
|
||||
XdmcpAllocARRAY16 (ARRAY16Ptr array, int length)
|
||||
|
||||
2
AA32.c
2
AA32.c
@@ -36,7 +36,7 @@ in this Software without prior written authorization from The Open Group.
|
||||
#include <X11/X.h>
|
||||
#include <X11/Xmd.h>
|
||||
#include <X11/Xdmcp.h>
|
||||
#include <limits.h>
|
||||
#include <stdint.h>
|
||||
|
||||
int
|
||||
XdmcpAllocARRAY32 (ARRAY32Ptr array, int length)
|
||||
|
||||
2
AA8.c
2
AA8.c
@@ -36,7 +36,7 @@ in this Software without prior written authorization from The Open Group.
|
||||
#include <X11/X.h>
|
||||
#include <X11/Xmd.h>
|
||||
#include <X11/Xdmcp.h>
|
||||
#include <limits.h>
|
||||
#include <stdint.h>
|
||||
|
||||
int
|
||||
XdmcpAllocARRAY8 (ARRAY8Ptr array, int length)
|
||||
|
||||
2
AofA8.c
2
AofA8.c
@@ -36,7 +36,7 @@ in this Software without prior written authorization from The Open Group.
|
||||
#include <X11/X.h>
|
||||
#include <X11/Xmd.h>
|
||||
#include <X11/Xdmcp.h>
|
||||
#include <limits.h>
|
||||
#include <stdint.h>
|
||||
|
||||
int
|
||||
XdmcpAllocARRAYofARRAY8 (ARRAYofARRAY8Ptr array, int length)
|
||||
|
||||
2
RaA16.c
2
RaA16.c
@@ -36,7 +36,7 @@ in this Software without prior written authorization from The Open Group.
|
||||
#include <X11/X.h>
|
||||
#include <X11/Xmd.h>
|
||||
#include <X11/Xdmcp.h>
|
||||
#include <limits.h>
|
||||
#include <stdint.h>
|
||||
|
||||
int
|
||||
XdmcpReallocARRAY16 (ARRAY16Ptr array, int length)
|
||||
|
||||
2
RaA32.c
2
RaA32.c
@@ -36,7 +36,7 @@ in this Software without prior written authorization from The Open Group.
|
||||
#include <X11/X.h>
|
||||
#include <X11/Xmd.h>
|
||||
#include <X11/Xdmcp.h>
|
||||
#include <limits.h>
|
||||
#include <stdint.h>
|
||||
|
||||
int
|
||||
XdmcpReallocARRAY32 (ARRAY32Ptr array, int length)
|
||||
|
||||
2
RaA8.c
2
RaA8.c
@@ -36,7 +36,7 @@ in this Software without prior written authorization from The Open Group.
|
||||
#include <X11/X.h>
|
||||
#include <X11/Xmd.h>
|
||||
#include <X11/Xdmcp.h>
|
||||
#include <limits.h>
|
||||
#include <stdint.h>
|
||||
|
||||
int
|
||||
XdmcpReallocARRAY8 (ARRAY8Ptr array, int length)
|
||||
|
||||
Reference in New Issue
Block a user