Sisyphus repository
Last update: 1 october 2023 | SRPMs: 18631 | Visits: 37808610
en ru br
ALT Linux repos
S:9.4.0.24.75e248-alt1
5.0: 6.12-alt2
4.1: 6.11-alt1
4.0: 5.97-alt6
3.0: 5.3.1-alt0.4

Other repositories
Upstream:8.1pl3

Group :: System/Base
RPM: coreutils

 Main   Changelog   Spec   Patches   Sources   Download   Gear   Bugs and FR  Repocop 

#include <stdio.h>
#include <errno.h>
#include <error.h>
#include <stdlib.h>
#include <unistd.h>

extern const char *__progname;

int
main (int ac, const char *const *av)
{
pid_t pid;

if (ac < 2)
error (EXIT_FAILURE, 0, "usage: %s program [arguments]",
__progname);

if (access (av[1], X_OK))
error (EXIT_FAILURE, errno, "%s", av[1]);

pid = fork ();
if (pid < 0)
error (EXIT_FAILURE, errno, "fork");
else if (pid)
return EXIT_SUCCESS;
if (setsid () < 0)
error (EXIT_FAILURE, errno, "setsid");

execvp (av[1], (char *const *) av + 1);
error (EXIT_FAILURE, errno, "%s", av[1]);
return EXIT_FAILURE;
}
 
design & coding: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
current maintainer: Michael Shigorin