home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat60.c */
- /*------------------------------------------------------------------*/
- #include <sys\stat.h>
- #include <string.h>
- #include <fcntl.h>
- #include <io.h>
-
- void main()
- {
- #define STDOUT 1
-
- int nul, oldstdout;
- char msg[] = "┤· ╕╒ Ñ╬";
-
- nul = open("TEST.TXT", O_CREAT | O_RDWR,
- S_IREAD | S_IWRITE);
-
- oldstdout = dup(STDOUT);
- dup2(nul, STDOUT);
-
- close(nul);
-
- write(STDOUT, msg, strlen(msg));
- dup2(oldstdout, STDOUT);
- close(oldstdout);
- }