blob: 57663eec40f3b7f8dfb3b720d76538d989d93b8b [file] [log] [blame]
//===-- GPU implementation of putchar -------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "file.h"
#include "src/stdio/putchar.h"
#include <stdio.h>
namespace LIBC_NAMESPACE {
LLVM_LIBC_FUNCTION(int, putchar, (int c)) {
unsigned char uc = static_cast<unsigned char>(c);
size_t written = file::write(stdout, &uc, 1);
if (1 != written)
return EOF;
return 0;
}
} // namespace LIBC_NAMESPACE