Sign in
mingw
/
mingw-w64
/
refs/heads/v14.x
/
.
/
mingw-w64-crt
/
stdio
/
_getc_nolock.c
blob: fb4b3f2a27fd1d62f60cf7567762b52557d5b0e6 [
file
]
#include
<stdio.h>
int
__cdecl _getc_nolock
(
FILE
*
stream
)
{
return
--
stream
->
_cnt
>=
0
?
0xff
&
*
stream
->
_ptr
++
:
_filbuf
(
stream
);
}
int
__cdecl
(*
__MINGW_IMP_SYMBOL
(
_getc_nolock
))(
FILE
*)
=
_getc_nolock
;