/* Note: This file is licenced differently from the rest of the project SPDX-License-Identifier: GPL-2.0 Copyright (C) UP9 Inc. */ #ifndef __UTIL__ #define __UTIL__ #define MIN(a,b) (((a)<(b))?(a):(b)) #endif /* __UTIL__ */