Deleted Added
full compact
rltest.c (21308) rltest.c (26497)
1/* **************************************************************** */
2/* */
3/* Testing Readline */
4/* */
5/* **************************************************************** */
6
1/* **************************************************************** */
2/* */
3/* Testing Readline */
4/* */
5/* **************************************************************** */
6
7/*
8 * Remove the next line if you're compiling this against an installed
9 * libreadline.a
10 */
11#define READLINE_LIBRARY
12
13#if defined (HAVE_CONFIG_H)
14#include <config.h>
15#endif
16
7#include <stdio.h>
8#include <sys/types.h>
17#include <stdio.h>
18#include <sys/types.h>
9#include "../readline.h"
10#include "../history.h"
19#include "readline.h"
20#include "history.h"
11
12main ()
13{
14 HIST_ENTRY **history_list ();
15 char *temp = (char *)NULL;
16 char *prompt = "readline$ ";
17 int done = 0;
18

--- 36 unchanged lines hidden ---
21
22main ()
23{
24 HIST_ENTRY **history_list ();
25 char *temp = (char *)NULL;
26 char *prompt = "readline$ ";
27 int done = 0;
28

--- 36 unchanged lines hidden ---