annotate 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
rev   line source
rlm@1 1 #include <unistd.h>
rlm@1 2
rlm@1 3 int main()
rlm@1 4 {
rlm@1 5 char* const argv[] = {"/sbin/ldconfig", "-v", NULL, NULL};
rlm@1 6 char* const env[] = {NULL, NULL};
rlm@1 7 return execve(argv[0], argv, env);
rlm@1 8 }