mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-10 01:40:17 +01:00
67 lines
2.4 KiB
C
67 lines
2.4 KiB
C
|
/*-
|
|||
|
* Copyright (c) 1991, 1993
|
|||
|
* The Regents of the University of California. All rights reserved.
|
|||
|
*
|
|||
|
* Redistribution and use in source and binary forms, with or without
|
|||
|
* modification, are permitted provided that the following conditions
|
|||
|
* are met:
|
|||
|
* 1. Redistributions of source code must retain the above copyright
|
|||
|
* notice, this list of conditions and the following disclaimer.
|
|||
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|||
|
* notice, this list of conditions and the following disclaimer in the
|
|||
|
* documentation and/or other materials provided with the distribution.
|
|||
|
* [<EFBFBD>3 Deleted as of 22Jul99, see
|
|||
|
* ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change
|
|||
|
* for details]
|
|||
|
* 4. Neither the name of the University nor the names of its contributors
|
|||
|
* may be used to endorse or promote products derived from this software
|
|||
|
* without specific prior written permission.
|
|||
|
*
|
|||
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|||
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|||
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|||
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|||
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|||
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|||
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|||
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|||
|
* SUCH DAMAGE.
|
|||
|
*
|
|||
|
* @(#)compat.h 8.1 (Berkeley) 6/2/93
|
|||
|
*/
|
|||
|
|
|||
|
/* Adapted for GUSI by Matthias Neeracher <neeri@iis.ee.ethz.ch> */
|
|||
|
|
|||
|
#ifndef _COMPAT_H_
|
|||
|
#define _COMPAT_H_
|
|||
|
|
|||
|
/*
|
|||
|
* If your system doesn't specify a max size for a SIZE_T, check
|
|||
|
* to make sure this is the right one.
|
|||
|
*/
|
|||
|
#ifndef SIZE_T_MAX
|
|||
|
#define SIZE_T_MAX UINT_MAX
|
|||
|
#endif
|
|||
|
|
|||
|
#define index(a, b) strchr(a, b)
|
|||
|
#define rindex(a, b) strrchr(a, b)
|
|||
|
#define bzero(a, b) memset(a, 0, b)
|
|||
|
#define bcmp(a, b, n) memcmp(a, b, n)
|
|||
|
#define bcopy(a, b, n) memmove(b, a, n)
|
|||
|
|
|||
|
/* POSIX 1003.2 RE limit. */
|
|||
|
#ifndef _POSIX2_RE_DUP_MAX
|
|||
|
#define _POSIX2_RE_DUP_MAX 255
|
|||
|
#endif
|
|||
|
|
|||
|
#ifndef MAX
|
|||
|
#define MAX(_a,_b) ((_a)<(_b)?(_b):(_a))
|
|||
|
#endif
|
|||
|
#ifndef MIN
|
|||
|
#define MIN(_a,_b) ((_a)<(_b)?(_a):(_b))
|
|||
|
#endif
|
|||
|
|
|||
|
#endif /* !_COMPAT_H_ */
|