view previous-work/more_control_helpers/lib/ldconfig.c @ 1:d6bef198ae71

add work by Matthias S. Benkmann which is the inspiration for this project.
author Robert McIntyre <rlm@mit.edu>
date Tue, 08 Jan 2013 11:45:01 +0000
parents
children
line wrap: on
line source
1 #include <unistd.h>
3 int main()
4 {
5 char* const argv[] = {"/sbin/ldconfig", "-v", NULL, NULL};
6 char* const env[] = {NULL, NULL};
7 return execve(argv[0], argv, env);
8 }