1995-11-29 07:40:04 +00:00
|
|
|
/* cdefs.h
|
|
|
|
|
|
|
|
Standard C definitions... */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1995 RadioMail Corporation. All rights reserved.
|
1999-03-16 05:50:46 +00:00
|
|
|
* Copyright (c) 1996-1999 Internet Software Consortium.
|
1995-11-29 07:40:04 +00:00
|
|
|
*
|
1999-03-16 05:50:46 +00:00
|
|
|
* Use is subject to license terms which appear in the file named
|
|
|
|
* ISC-LICENSE that should have accompanied this file when you
|
|
|
|
* received it. If a file named ISC-LICENSE did not accompany this
|
|
|
|
* file, or you are not sure the one you have is correct, you may
|
|
|
|
* obtain an applicable copy of the license at:
|
1995-11-29 07:40:04 +00:00
|
|
|
*
|
1999-03-16 05:50:46 +00:00
|
|
|
* http://www.isc.org/isc-license-1.0.html.
|
1995-11-29 07:40:04 +00:00
|
|
|
*
|
1999-03-16 05:50:46 +00:00
|
|
|
* This file is part of the ISC DHCP distribution. The documentation
|
|
|
|
* associated with this file is listed in the file DOCUMENTATION,
|
|
|
|
* included in the top-level directory of this release.
|
|
|
|
*
|
|
|
|
* Support and other services are available for ISC products - see
|
|
|
|
* http://www.isc.org for more information.
|
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
|
|
|
|
* been made for the Internet Software Consortium under a contract
|
|
|
|
* with Vixie Laboratories.
|
1995-11-29 07:40:04 +00:00
|
|
|
*/
|
|
|
|
|
1996-05-19 23:56:17 +00:00
|
|
|
#if (defined (__GNUC__) || defined (__STDC__)) && !defined (BROKEN_ANSI)
|
1995-11-29 07:40:04 +00:00
|
|
|
#define PROTO(x) x
|
|
|
|
#define KandR(x)
|
|
|
|
#define ANSI_DECL(x) x
|
1996-05-19 23:56:17 +00:00
|
|
|
#if defined (__GNUC__)
|
1995-11-29 07:40:04 +00:00
|
|
|
#define INLINE inline
|
1996-06-04 19:02:26 +00:00
|
|
|
#else
|
|
|
|
#define INLINE
|
1996-05-19 23:56:17 +00:00
|
|
|
#endif /* __GNUC__ */
|
1995-11-29 07:40:04 +00:00
|
|
|
#else
|
|
|
|
#define PROTO(x) ()
|
|
|
|
#define KandR(x) x
|
|
|
|
#define ANSI_DECL(x)
|
|
|
|
#define INLINE
|
1996-05-19 23:56:17 +00:00
|
|
|
#endif /* __GNUC__ || __STDC__ */
|