1 // Copyright 2022 The Chromium OS Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #include <stdio.h> 6 stdout_fileno()7int stdout_fileno() { 8 return fileno(stdout); 9 } 10 stderr_fileno()11int stderr_fileno() { 12 return fileno(stderr); 13 } 14