staging: rtl8192u: remove redundant assignment to pointer crypt
[linux/fpc-iii.git] / tools / testing / selftests / bpf / test_maps.h
blob77d8587ac4edb5dd1640e74771efd0f509e1cb46
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _TEST_MAPS_H
3 #define _TEST_MAPS_H
5 #include <stdio.h>
6 #include <stdlib.h>
8 #define CHECK(condition, tag, format...) ({ \
9 int __ret = !!(condition); \
10 if (__ret) { \
11 printf("%s(%d):FAIL:%s ", __func__, __LINE__, tag); \
12 printf(format); \
13 exit(-1); \
14 } \
17 #endif