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.
This commit is contained in:
parent
66735d9c9e
commit
b02ac4dc83
|
@ -1,3 +1,6 @@
|
||||||
/* OS-dependent support for what is supposed to be the standard ANSI C Library.
|
/* OS-dependent support for what is supposed to be the standard ANSI C Library.
|
||||||
** Copyright (c) 1996 by Brian D. Carlstrom.
|
** 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"
|
||||||
|
|
Loading…
Reference in New Issue