Sign in
mingw
/
mingw-w64
/
refs/heads/master
/
.
/
mingw-w64-crt
/
stdio
/
_fputc_nolock.c
blob: 038f61671b19f5892956cd7bf76f362467f29fa8 [
file
] [
log
] [
blame
]
#include
<stdio.h>
int
__cdecl _fputc_nolock
(
int
c
,
FILE
*
stream
)
{
return
_putc_nolock
(
c
,
stream
);
}
int
__cdecl
(*
__MINGW_IMP_SYMBOL
(
_fputc_nolock
))(
int
,
FILE
*)
=
_fputc_nolock
;