/
githubmirror
/
strace
Обзор
Документация
Войти
/
githubmirror
/
strace
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/getxuid.c
31 строка
488 B
Dmitry V. Levin
Change my email address
31 дек 2020, 11:00
31 дек 2020, 11:00
9d9e662
Код
Авторство
О чём код?
/* * Copyright (c) 2016-2018 Dmitry V. Levin <ldv@strace.io> * Copyright (c) 2016-2020 The strace developers. * All rights reserved. * * SPDX-License-Identifier: GPL-2.0-or-later */ #include "tests.h" #include "scno.h" #ifdef __NR_getxuid # include <stdio.h> # include <unistd.h> int main(void) { long id = syscall(__NR_getxuid); printf("getxuid() = %ld (euid %ld)\n", id, id); puts("+++ exited with 0 +++"); return 0; } #else SKIP_MAIN_UNDEFINED("__NR_getxuid") #endif