/
githubmirror
/
strace
Обзор
Документация
Войти
/
githubmirror
/
strace
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/times-fail.c
22 строки
368 B
Dmitry V. Levin
Update copyright headers
30 окт 2023, 11:00
30 окт 2023, 11:00
7adc8e7
Код
Авторство
О чём код?
/* * Copyright (c) 2015-2023 The strace developers. * All rights reserved. * * SPDX-License-Identifier: GPL-2.0-or-later */ #include "tests.h" #include <assert.h> #include <stdio.h> #include <unistd.h> #include "scno.h" int main(void) { assert(syscall(__NR_times, 0x42) == -1); printf("times(0x42)" RVAL_EFAULT); puts("+++ exited with 0 +++"); return 0; }