8 lines
182 B
C
8 lines
182 B
C
/* 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
|