]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
2002-08-02 Roland McGrath <roland@redhat.com>
authorRoland McGrath <roland@gnu.org>
Fri, 2 Aug 2002 21:45:38 +0000 (21:45 +0000)
committerRoland McGrath <roland@gnu.org>
Fri, 2 Aug 2002 21:45:38 +0000 (21:45 +0000)
* posix/bits/posix1_lim.h (SSIZE_MAX): Define to LONG_MAX, not INT_MAX.
On 32-bit platforms they are the same; on 64-bit platforms ssize_t
matches long int, not int.

posix/bits/posix1_lim.h

index e16f4674dd84376e195f847b2d68b009d5b07335..050fe47fdb2cf5c4356931edebd2bae66a6bb41e 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991,92,93,96,98,2000,2001 Free Software Foundation, Inc.
+/* Copyright (C) 1991,92,93,96,98,2000,01,02 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
 
 
 #ifndef        SSIZE_MAX
-# define SSIZE_MAX     INT_MAX
+# define SSIZE_MAX     LONG_MAX
 #endif