Sign in
mingw
/
mingw-w64
/
0804a2317ef912e53b73dc28d14347e2e0bfced6
/
.
/
mingw-w64-crt
/
stdio
/
_putc_nolock.c
blob: 4f20d150a18d4a7f1563db3173d163818ff9fff5 [
file
]
#include
<stdio.h>
int
__cdecl _putc_nolock
(
int
c
,
FILE
*
stream
)
{
return
--
stream
->
_cnt
>=
0
?
0xff
&
(*
stream
->
_ptr
++
=
(
char
)
c
)
:
_flsbuf
(
c
,
stream
);
}
int
__cdecl
(*
__MINGW_IMP_SYMBOL
(
_putc_nolock
))(
int
,
FILE
*)
=
_putc_nolock
;