Files
xserver/os/mathx_priv.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
339 B
C
Raw Permalink Normal View History

/* SPDX-License-Identifier: MIT OR X11
*
* Copyright © 2024 Enrico Weigelt, metux IT consult <info@metux.net>
*/
#ifndef _XSERVER_OS_MATHX_PRIV_H_
#define _XSERVER_OS_MATHX_PRIV_H_
#ifndef MIN
#define MIN(a,b) (((a)<(b))?(a):(b))
#endif
#ifndef MAX
#define MAX(a,b) (((a)>(b))?(a):(b))
#endif
#endif /* _XSERVER_OS_MATHX_PRIV_H_ */