gblues 6904101c44 Clean up trailing whitespace
== DETAILS

Really simple code cleanup, because my editor flags trailing whitespaces
and it's pretty annoying.
2017-12-12 00:24:18 -08:00

22 lines
477 B
C

/* license:BSD-3-Clause
* copyright-holders:Aaron Giles
***************************************************************************
minmax.h
***************************************************************************/
#pragma once
#ifndef __MINMAX_H__
#define __MINMAX_H__
#if defined(RARCH_INTERNAL) || defined(__LIBRETRO__)
#include <retro_miscellaneous.h>
#else
#define MAX(x, y) (((x) > (y)) ? (x) : (y))
#define MIN(x, y) ((x) < (y) ? (x) : (y))
#endif
#endif