changeset 6828:34f5b5aeff20

Comments from 2006-04-27.
author Bruno Haible <bruno@clisp.org>
date Fri, 16 Jun 2006 17:34:33 +0000
parents 694e127ebaad
children 19c37b3f23b1
files lib/size_max.h
diffstat 1 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lib/size_max.h
+++ b/lib/size_max.h
@@ -1,5 +1,5 @@
 /* size_max.h -- declare SIZE_MAX through system headers
-   Copyright (C) 2005 Free Software Foundation, Inc.
+   Copyright (C) 2005-2006 Free Software Foundation, Inc.
    Written by Simon Josefsson.
 
    This program is free software; you can redistribute it and/or modify
@@ -19,9 +19,13 @@
 #ifndef GNULIB_SIZE_MAX_H
 #define GNULIB_SIZE_MAX_H
 
+/* Get SIZE_MAX declaration on systems like Solaris 7/8/9.  */
 # include <limits.h>
+/* Get SIZE_MAX declaration on systems like glibc 2.  */
 # if HAVE_STDINT_H
 #  include <stdint.h>
 # endif
+/* On systems where these include files don't define it, SIZE_MAX is defined
+   in config.h.  */
 
 #endif /* GNULIB_SIZE_MAX_H */