OILS / build / detect-readline-catch.c View on Github | oils.pub

11 lines, 7 significant
1/* clang-format off */
2#include <stdio.h>
3#include <readline/readline.h>
4#include <readline/history.h>
5/* clang-format on */
6
7int main(void) {
8 rl_catch_signals = 0;
9 rl_catch_sigwinch = 0;
10 return 0;
11}