Handle missing stdio handles on Windows

This commit is contained in:
Justine Tunney 2022-08-22 17:03:11 -07:00
parent 2227cefa5d
commit 58d22c7c3d
3 changed files with 16 additions and 235 deletions

View file

@ -173,6 +173,6 @@ BENCH(clone, bench) {
char *volatile tp;
errno_t *volatile ep;
EZBENCH2("__errno_location", donothing, (ep = __errno_location()));
EZBENCH2("__get_tls_privileged", donothing, (tp = __get_tls_privileged()));
EZBENCH2("__get_tls_priv", donothing, (tp = __get_tls_privileged()));
EZBENCH2("__get_tls", donothing, (tp = __get_tls()));
}