Blame gnulib/lib/size_max.h

Packit Service a2ae7a
/* size_max.h -- declare SIZE_MAX through system headers
Packit Service a2ae7a
   Copyright (C) 2005-2006, 2009-2019 Free Software Foundation, Inc.
Packit Service a2ae7a
   Written by Simon Josefsson.
Packit Service a2ae7a
Packit Service a2ae7a
   This program is free software; you can redistribute it and/or modify
Packit Service a2ae7a
   it under the terms of the GNU Lesser General Public License as published by
Packit Service a2ae7a
   the Free Software Foundation; either version 2.1, or (at your option)
Packit Service a2ae7a
   any later version.
Packit Service a2ae7a
Packit Service a2ae7a
   This program is distributed in the hope that it will be useful,
Packit Service a2ae7a
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service a2ae7a
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service a2ae7a
   GNU Lesser General Public License for more details.
Packit Service a2ae7a
Packit Service a2ae7a
   You should have received a copy of the GNU Lesser General Public License
Packit Service a2ae7a
   along with this program; if not, see <https://www.gnu.org/licenses/>.  */
Packit Service a2ae7a
Packit Service a2ae7a
#ifndef GNULIB_SIZE_MAX_H
Packit Service a2ae7a
#define GNULIB_SIZE_MAX_H
Packit Service a2ae7a
Packit Service a2ae7a
/* Get SIZE_MAX declaration on systems like Solaris 7/8/9.  */
Packit Service a2ae7a
# include <limits.h>
Packit Service a2ae7a
/* Get SIZE_MAX declaration on systems like glibc 2.  */
Packit Service a2ae7a
# if HAVE_STDINT_H
Packit Service a2ae7a
#  include <stdint.h>
Packit Service a2ae7a
# endif
Packit Service a2ae7a
/* On systems where these include files don't define it, SIZE_MAX is defined
Packit Service a2ae7a
   in config.h.  */
Packit Service a2ae7a
Packit Service a2ae7a
#endif /* GNULIB_SIZE_MAX_H */