Deleted Added
full compact
rlcat.c (119610) rlcat.c (157184)
1/*
2 * rlcat - cat(1) using readline
3 *
4 * usage: rlcat
5 */
6
7/* Copyright (C) 1987-2002 Free Software Foundation, Inc.
8

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

35#include <sys/types.h>
36#include "posixstat.h"
37
38#include <stdio.h>
39#include <ctype.h>
40#include <string.h>
41#include <errno.h>
42
1/*
2 * rlcat - cat(1) using readline
3 *
4 * usage: rlcat
5 */
6
7/* Copyright (C) 1987-2002 Free Software Foundation, Inc.
8

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

35#include <sys/types.h>
36#include "posixstat.h"
37
38#include <stdio.h>
39#include <ctype.h>
40#include <string.h>
41#include <errno.h>
42
43#ifdef HAVE_STDLIB_H
44# include <stdlib.h>
45#else
46extern void exit();
47#endif
48
43#ifndef errno
44extern int errno;
45#endif
46
47#if defined (READLINE_LIBRARY)
48# include "readline.h"
49# include "history.h"
50#else

--- 124 unchanged lines hidden ---
49#ifndef errno
50extern int errno;
51#endif
52
53#if defined (READLINE_LIBRARY)
54# include "readline.h"
55# include "history.h"
56#else

--- 124 unchanged lines hidden ---