2 * Copy standard input to standard output (slow way)
4 * Would probably faster if we:
6 * 1. get the BUFSIZE value from stat's st_blksize member
7 * 2. use the standard I/O functions
22 while ((n
= read(STDIN_FILENO
, buf
, BUFSIZE
)) > 0)
23 if (write(STDOUT_FILENO
, buf
, n
) != n
)