/
githubmirror
/
strace
Обзор
Документация
Войти
/
githubmirror
/
strace
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/fflush.c
22 строки
360 B
Dmitry V. Levin
Update copyright headers
25 дек 2018, 02:46
25 дек 2018, 02:46
73fa3d6
Код
Авторство
О чём код?
/* * Check fflush error diagnostics. * * Copyright (c) 2017-2018 The strace developers. * All rights reserved. * * SPDX-License-Identifier: GPL-2.0-or-later */ #include "tests.h" #include <errno.h> #include <stdio.h> #include <stdlib.h> int main(void) { errno = ENOSPC; printf("%s: /dev/full: %m\n", getenv("STRACE_EXE") ?: "strace"); return 0; }