Deleted Added
full compact
redir.h (17987) redir.h (20425)
1/*-
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Kenneth Almquist.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)redir.h 8.2 (Berkeley) 5/4/95
1/*-
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Kenneth Almquist.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)redir.h 8.2 (Berkeley) 5/4/95
37 * $Id: redir.h,v 1.2 1994/09/24 02:58:11 davidg Exp $
37 * $Id: redir.h,v 1.3 1996/09/01 10:21:37 peter Exp $
38 */
39
40/* flags passed to redirect */
41#define REDIR_PUSH 01 /* save previous values of file descriptors */
42#define REDIR_BACKQ 02 /* save the command output in memory */
43
44union node;
45void redirect __P((union node *, int));
46void popredir __P((void));
47int fd0_redirected_p __P((void));
38 */
39
40/* flags passed to redirect */
41#define REDIR_PUSH 01 /* save previous values of file descriptors */
42#define REDIR_BACKQ 02 /* save the command output in memory */
43
44union node;
45void redirect __P((union node *, int));
46void popredir __P((void));
47int fd0_redirected_p __P((void));
48void clearredir __P((void));
48void clearredir __P((void));
49int copyfd __P((int, int));
50
49int copyfd __P((int, int));
50