File tree Expand file tree Collapse file tree 2 files changed +0
-11
lines changed Expand file tree Collapse file tree 2 files changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -35,8 +35,6 @@ extern "C" {
35
35
36
36
// Input/output <stdio.h>
37
37
SWIFT_RUNTIME_STDLIB_INTERNAL
38
- int _swift_stdlib_putchar_unlocked (int c);
39
- SWIFT_RUNTIME_STDLIB_INTERNAL
40
38
__swift_size_t _swift_stdlib_fwrite_stdout (const void *ptr, __swift_size_t size,
41
39
__swift_size_t nitems);
42
40
Original file line number Diff line number Diff line change 31
31
32
32
#include " ../SwiftShims/LibcShims.h"
33
33
34
- SWIFT_RUNTIME_STDLIB_INTERNAL
35
- int _swift_stdlib_putchar_unlocked (int c) {
36
- #if defined(_WIN32)
37
- return _putc_nolock (c, stdout);
38
- #else
39
- return putchar_unlocked (c);
40
- #endif
41
- }
42
-
43
34
SWIFT_RUNTIME_STDLIB_INTERNAL
44
35
__swift_size_t _swift_stdlib_fwrite_stdout (const void *ptr,
45
36
__swift_size_t size,
You can’t perform that action at this time.
0 commit comments