blob: bb819020768522961d5632cb63271a6947d2c2b9 [file]
// Copyright 2026 The Fuchsia Authors
//
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT
#include <stdio.h>
int puts(const char* s) { return fputs(s, stdout) == 0 ? putchar('\n') : -1; }