1 /* 2 * SPDX-FileCopyrightText: 2018-2022 Espressif Systems (Shanghai) CO LTD 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #pragma once 8 9 #include <sys/types.h> 10 11 #include_next <sys/unistd.h> 12 13 #ifdef __cplusplus 14 extern "C" { 15 #endif 16 17 int truncate(const char *, off_t __length); 18 int gethostname(char *__name, size_t __len); 19 20 #ifdef __cplusplus 21 } 22 #endif 23