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

9 lines, 6 significant
1#include <stdio.h>
2#include <readline/readline.h>
3#include <readline/history.h>
4
5int main(void) {
6 printf("Address of free_history_entry: %p\n", (void *)free_history_entry);
7
8 return 0;
9}