1995-11-29 07:40:04 +00:00
|
|
|
/* cdefs.h
|
|
|
|
|
|
|
|
Standard C definitions... */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1995 RadioMail Corporation. All rights reserved.
|
2017-07-12 09:23:23 -04:00
|
|
|
* Copyright (c) 2004-2017 by Internet Systems Consortium, Inc. ("ISC")
|
2005-03-17 20:15:29 +00:00
|
|
|
* Copyright (c) 1996-2003 by Internet Software Consortium
|
1995-11-29 07:40:04 +00:00
|
|
|
*
|
2017-07-12 09:23:23 -04:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
1995-11-29 07:40:04 +00:00
|
|
|
*
|
2005-03-17 20:15:29 +00:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
|
|
|
|
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
1995-11-29 07:40:04 +00:00
|
|
|
*
|
2005-03-17 20:15:29 +00:00
|
|
|
* Internet Systems Consortium, Inc.
|
|
|
|
* 950 Charter Street
|
|
|
|
* Redwood City, CA 94063
|
|
|
|
* <info@isc.org>
|
2009-07-23 18:52:21 +00:00
|
|
|
* https://www.isc.org/
|
1995-11-29 07:40:04 +00:00
|
|
|
*
|
|
|
|
* This software was written for RadioMail Corporation by Ted Lemon
|
1996-05-19 23:56:17 +00:00
|
|
|
* under a contract with Vixie Enterprises. Further modifications have
|
2005-03-17 20:15:29 +00:00
|
|
|
* been made for Internet Systems Consortium under a contract
|
1996-05-19 23:56:17 +00:00
|
|
|
* with Vixie Laboratories.
|
1995-11-29 07:40:04 +00:00
|
|
|
*/
|
|
|
|
|
1999-10-05 01:31:42 +00:00
|
|
|
#if !defined (__ISC_DHCP_CDEFS_H__)
|
|
|
|
#define __ISC_DHCP_CDEFS_H__
|
1999-10-12 16:00:34 +00:00
|
|
|
/* Delete attributes if not gcc or not the right version of gcc. */
|
|
|
|
#if !defined(__GNUC__) || __GNUC__ < 2 || \
|
2001-06-27 00:31:20 +00:00
|
|
|
(__GNUC__ == 2 && __GNUC_MINOR__ < 5) || defined (darwin)
|
1999-10-12 16:00:34 +00:00
|
|
|
#define __attribute__(x)
|
|
|
|
#endif
|
|
|
|
|
2009-01-22 00:43:58 +00:00
|
|
|
/* The following macro handles the case of unwanted return values. In
|
|
|
|
* GCC one can specify an attribute for a function to generate a warning
|
|
|
|
* if the return value of the function is ignored and one can't dispose of
|
|
|
|
* the warning by the use of void. In conjunction with the use of -Werror
|
|
|
|
* these warnings prohibit the compilation of the package. This macro
|
|
|
|
* allows us to assign the return value to a variable and then ignore it.
|
2012-03-09 11:18:14 +00:00
|
|
|
*
|
|
|
|
* __attribute__((unused)) is added for avoiding another warning about set,
|
|
|
|
* but unused variable. This is produced by unused-but-set-variable switch
|
|
|
|
* that is enabled by default in gcc 4.6.
|
2009-01-22 00:43:58 +00:00
|
|
|
*/
|
2011-05-11 00:38:56 +00:00
|
|
|
#if !defined(__GNUC__) || (__GNUC__ < 4)
|
2009-01-22 00:43:58 +00:00
|
|
|
#define IGNORE_RET(x) (void) x
|
|
|
|
#else
|
|
|
|
#define IGNORE_RET(x) \
|
|
|
|
do { \
|
2012-03-09 11:18:14 +00:00
|
|
|
int __attribute__((unused)) ignore_return ;\
|
|
|
|
ignore_return = x; \
|
2009-01-22 00:43:58 +00:00
|
|
|
} while (0)
|
|
|
|
#endif
|
|
|
|
|
2012-03-09 11:18:14 +00:00
|
|
|
/* This macro is defined to avoid unused-but-set-variable warning
|
|
|
|
* that is enabled in gcc 4.6
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define IGNORE_UNUSED(x) { x = x; }
|
|
|
|
|
1999-10-05 01:31:42 +00:00
|
|
|
#endif /* __ISC_DHCP_CDEFS_H__ */
|