• R
    in visibility preinclude, remove overrides for stdin/stdout/stderr · b8dda24f
    Rich Felker 提交于
    the motivation for this change is that the extra declaration (with or
    without visibility) using "struct _IO_FILE" instead of "FILE" seems to
    trigger a bug in gcc 3.x where it considers the types mismatched.
    however, this change also results in slightly better code and it is
    valid because (1) these three objects are constant, and (2) applying
    the & operator to any of them is invalid C, since they are not even
    specified to be objects. thus it does not matter if the application
    and libc see different addresses for them, as long as the (initial,
    unchanging) value is seen the same by both.
    b8dda24f
vis.h 1.3 KB