brintos

brintos / linux-shallow public Read only

0
0
Text · 630 B · 1dff302 Raw
27 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2#ifndef _PERF_UI_SLANG_H_3#define _PERF_UI_SLANG_H_ 14/*5 * slang versions <= 2.0.6 have a "#if HAVE_LONG_LONG" that breaks6 * the build if it isn't defined. Use the equivalent one that glibc7 * has on features.h.8 */9#include <features.h>10#ifndef HAVE_LONG_LONG11#define HAVE_LONG_LONG __GLIBC_HAVE_LONG_LONG12#endif13 14/* Enable future slang's corrected function prototypes. */15#define ENABLE_SLFUTURE_CONST 116#define ENABLE_SLFUTURE_VOID 117 18#ifdef HAVE_SLANG_INCLUDE_SUBDIR19#include <slang/slang.h>20#else21#include <slang.h>22#endif23 24#define SL_KEY_UNTAB 0x100025 26#endif /* _PERF_UI_SLANG_H_ */27