Deleted Added
sdiff udiff text old ( 119610 ) new ( 157184 )
full compact
1/* **************************************************************** */
2/* */
3/* Testing Readline */
4/* */
5/* **************************************************************** */
6
7/* Copyright (C) 1987-2002 Free Software Foundation, Inc.
8

--- 17 unchanged lines hidden (view full) ---

26
27#if defined (HAVE_CONFIG_H)
28#include <config.h>
29#endif
30
31#include <stdio.h>
32#include <sys/types.h>
33
34#ifdef HAVE_STDLIB_H
35# include <stdlib.h>
36#else
37extern void exit();
38#endif
39
40#ifdef READLINE_LIBRARY
41# include "readline.h"
42# include "history.h"
43#else
44# include <readline/readline.h>
45# include <readline/history.h>
46#endif
47

--- 46 unchanged lines hidden ---