Andrew Walbran | 58954f9 | 2019-05-09 17:11:20 +0100 | [diff] [blame] | 1 | /* |
David Brazdil | 5223043 | 2020-01-27 15:08:34 +0000 | [diff] [blame] | 2 | * Copyright 2020 The Hafnium Authors. |
Andrew Walbran | 58954f9 | 2019-05-09 17:11:20 +0100 | [diff] [blame] | 3 | * |
Andrew Walbran | e959ec1 | 2020-06-17 15:01:09 +0100 | [diff] [blame] | 4 | * Use of this source code is governed by a BSD-style |
| 5 | * license that can be found in the LICENSE file or at |
| 6 | * https://opensource.org/licenses/BSD-3-Clause. |
Andrew Walbran | 58954f9 | 2019-05-09 17:11:20 +0100 | [diff] [blame] | 7 | */ |
| 8 | |
David Brazdil | 5223043 | 2020-01-27 15:08:34 +0000 | [diff] [blame] | 9 | #pragma once |
Andrew Walbran | 58954f9 | 2019-05-09 17:11:20 +0100 | [diff] [blame] | 10 | |
David Brazdil | 5223043 | 2020-01-27 15:08:34 +0000 | [diff] [blame] | 11 | /** |
| 12 | * Print one character to standard output. |
| 13 | * This is intentionally called differently from functions in <stdio.h> so as to |
| 14 | * avoid clashes when linking against libc. |
| 15 | */ |
| 16 | void stdout_putchar(char c); |
Kathleen Capella | fd306bb | 2023-03-17 18:14:01 -0400 | [diff] [blame^] | 17 | void stdout_flush(void); |