1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
* cat.c --
*
* Program used when testing tclWinPipe.c
*
* Copyright (c) 1996 by Sun Microsystems, Inc.
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
* RCS: @(#) $Id: cat.c,v 1.3.10.1 2010/01/31 23:51:37 nijtmans Exp $
*/
#include <stdio.h>
#ifdef __CYGWIN__
# include <unistd.h>
#else
# include <io.h>
|
<
<
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* cat.c --
*
* Program used when testing tclWinPipe.c
*
* Copyright (c) 1996 by Sun Microsystems, Inc.
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*/
#include <stdio.h>
#ifdef __CYGWIN__
# include <unistd.h>
#else
# include <io.h>
|