deb4998ba50060c48cce222fd18a8eed053918d7vboxsync/*
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync * Copyright IBM Corporation 1987,1988,1989
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync *
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync * All Rights Reserved
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync *
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync * Permission to use, copy, modify, and distribute this software and its
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync * documentation for any purpose and without fee is hereby granted,
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync * provided that the above copyright notice appear in all copies and that
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync * both that copyright notice and this permission notice appear in
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync * supporting documentation, and that the name of IBM not be
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync * used in advertising or publicity pertaining to distribution of the
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync * software without specific, written prior permission.
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync *
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync * IBM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync * ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync * IBM BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync * ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync * SOFTWARE.
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync *
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync*/
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync/* $XConsortium: OScompiler.h /main/4 1996/02/21 17:56:09 kaleb $ */
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync#ifdef HAVE_XORG_CONFIG_H
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync#include <xorg-config.h>
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync#endif
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync#ifndef __COMPILER_DEPENDANCIES__
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync#define __COMPILER_DEPENDANCIES__
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync#define MOVE( src, dst, length ) memcpy( dst, src, length)
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync#define MAX(a,b) (((a)>(b))?(a):(b))
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync#define MIN(a,b) (((a)<(b))?(a):(b))
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync#define ABS(x) (((x)>0)?(x):-(x))
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync#include "misc.h"
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync#include "compiler.h"
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync#ifdef lint
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync/* So that lint doesn't complain about constructs it doesn't understand */
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync#ifdef volatile
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync#undef volatile
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync#endif
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync#define volatile
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync#ifdef const
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync#undef const
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync#endif
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync#define const
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync#ifdef signed
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync#undef signed
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync#endif
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync#define signed
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync#ifdef _ANSI_DECLS_
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync#undef _ANSI_DECLS_
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync#endif
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync#endif
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync
deb4998ba50060c48cce222fd18a8eed053918d7vboxsync#endif /* !__COMPILER_DEPENDANCIES__ */