From 464dcfe228252ca8def24f45e4a0f34e6bd28297 Mon Sep 17 00:00:00 2001 From: cvs2svn Date: Wed, 17 Sep 2003 15:10:37 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'sendmail-vendor-sendmail_200309_parseaddr_patch'. --- contrib/sendmail/include/sm/limits.h | 55 ------------------------------------ 1 file changed, 55 deletions(-) delete mode 100644 contrib/sendmail/include/sm/limits.h (limited to 'contrib/sendmail/include/sm/limits.h') diff --git a/contrib/sendmail/include/sm/limits.h b/contrib/sendmail/include/sm/limits.h deleted file mode 100644 index 5041db317f32..000000000000 --- a/contrib/sendmail/include/sm/limits.h +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Copyright (c) 2000-2001 Sendmail, Inc. and its suppliers. - * All rights reserved. - * - * By using this file, you agree to the terms and conditions set - * forth in the LICENSE file which can be found at the top level of - * the sendmail distribution. - * - * $Id: limits.h,v 1.6 2001/03/08 03:23:08 ca Exp $ - */ - -/* -** -** This header file is a portability wrapper for . -** It includes , then it ensures that the following macros -** from the C 1999 standard for are defined: -** LLONG_MIN, LLONG_MAX -** ULLONG_MAX -*/ - -#ifndef SM_LIMITS_H -# define SM_LIMITS_H - -# include -# include -# include - -/* -** The following assumes two's complement binary arithmetic. -*/ - -# ifndef LLONG_MIN -# define LLONG_MIN ((LONGLONG_T)(~(ULLONG_MAX >> 1))) -# endif /* ! LLONG_MIN */ -# ifndef LLONG_MAX -# define LLONG_MAX ((LONGLONG_T)(ULLONG_MAX >> 1)) -# endif /* ! LLONG_MAX */ -# ifndef ULLONG_MAX -# define ULLONG_MAX ((ULONGLONG_T)(-1)) -# endif /* ! ULLONG_MAX */ - -/* -** PATH_MAX is defined by the POSIX standard. All modern systems -** provide it. Older systems define MAXPATHLEN in instead. -*/ - -# ifndef PATH_MAX -# ifdef MAXPATHLEN -# define PATH_MAX MAXPATHLEN -# else /* MAXPATHLEN */ -# define PATH_MAX 2048 -# endif /* MAXPATHLEN */ -# endif /* ! PATH_MAX */ - -#endif /* ! SM_LIMITS_H */ -- cgit v1.2.3