Sisyphus repositório
Última atualização: 1 outubro 2023 | SRPMs: 18631 | Visitas: 37601070
en ru br
ALT Linux repositórios
S:2.39.2-alt1
5.0: 2.14.1-alt1
4.1: 2.13-alt8
4.0: 2.12r-alt6
3.0: 2.12q-alt1

Group :: Sistema/Base
RPM: util-linux

 Main   Changelog   Spec   Patches   Sources   Download   Gear   Bugs e FR  Repocop 

/*
* This program just executes system call pause.
*
* gcc -Os -static -nostartfiles -o pause pause.c
*
* Written by Kirill A. Shutemov <kas@altlinux.org> and placed in the public domain.
*/

#include <sys/syscall.h> /* For SYS_xxx definitions */

long int syscall(long int number, ...);

void
_start(void)
{
syscall(SYS_pause);
}
 
projeto & código: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
mantenedor atual: Michael Shigorin
mantenedor da tradução: Fernando Martini aka fmartini © 2009