annotate previous-work/more_control_helpers/lib/ldconfig.c @ 21:d46aeb3166d0

going to work on file permissions/ownership since mercurial doesn't track them.
author Robert McIntyre <rlm@mit.edu>
date Thu, 10 Jan 2013 07:02:49 +0000
parents d6bef198ae71
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 }