From 8435c561b3b443cf2e01f970e7322a964489187d Mon Sep 17 00:00:00 2001 From: tjr Date: Sun, 29 Sep 2002 12:38:25 +0000 Subject: Remove dead code which supported systems without O_APPEND, O_CREAT or SIGTSTP. --- bin/sh/show.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'bin/sh/show.c') diff --git a/bin/sh/show.c b/bin/sh/show.c index 9baac48..bc2ea28 100644 --- a/bin/sh/show.c +++ b/bin/sh/show.c @@ -374,9 +374,7 @@ opentrace(void) { char s[100]; char *getenv(); -#ifdef O_APPEND int flags; -#endif if (!debug) return; @@ -399,10 +397,8 @@ opentrace(void) fprintf(stderr, "Can't open %s: %s\n", s, strerror(errno)); return; } -#ifdef O_APPEND if ((flags = fcntl(fileno(tracefile), F_GETFL, 0)) >= 0) fcntl(fileno(tracefile), F_SETFL, flags | O_APPEND); -#endif fputs("\nTracing started.\n", tracefile); fflush(tracefile); } -- cgit v1.1