/* SPDX-License-Identifier: GPL-2.0-only */ #pragma once #define top( a, b ) ( a < b ? b : a ) #define bottom( a, b ) ( a < b ? a : b ) #define XSTR(s) STR(s) #define STR(s) #s