blob: 7105cc49e4868fd6188df28dc96d9e6fd3eb415e [file] [log] [blame]
/*!
************************************************************************
* \file
* minmax.h
* \brief
* defines min and max macros for non WIN32 environments
************************************************************************
*/
#ifndef _MINMAX_
#define _MINMAX_
#if !defined(WIN32) || defined(__GNUC__)
#endif
#endif