8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
* 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 2005/11/04 00:06:49 dkf Exp $
*/
#include <stdio.h>
#include <io.h>
#include <string.h>
int
main(void)
{
char buf[1024];
int n;
|
>
>
>
|
>
|
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
* 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 2005/11/04 00:06:49 dkf Exp $
*/
#include <stdio.h>
#ifdef __CYGWIN__
# include <unistd.h>
#else
# include <io.h>
#endif
#include <string.h>
int
main(void)
{
char buf[1024];
int n;
|