OILS / build / detect-readline-free-history-entry.c View on Github | oils.pub

11 lines, 6 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 printf("Address of free_history_entry: %p\n", (void *)free_history_entry);
9
10 return 0;
11}