From b02ac4dc83aaf5cc47cf0c297ddc9ca868010bc4 Mon Sep 17 00:00:00 2001 From: shivers Date: Wed, 26 Feb 1997 20:38:39 +0000 Subject: [PATCH] hacked in a gross fix for linux bug. The problem is that linux stdio functions retry when interrupted, instead of returning errno=EINTR. linux/libansi.c now has a #include "fix_stdio.c" in it to get the fixup code included. This is very bogus. --- scsh/linux/libansi.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scsh/linux/libansi.c b/scsh/linux/libansi.c index bcd6e0e..fc24cfa 100644 --- a/scsh/linux/libansi.c +++ b/scsh/linux/libansi.c @@ -1,3 +1,6 @@ /* OS-dependent support for what is supposed to be the standard ANSI C Library. ** Copyright (c) 1996 by Brian D. Carlstrom. */ + +/* Bogus hack so we don't have to add another file to the Makefile list. */ +#include "fix_stdio.c"