execvp is defined thus:
int execvp(const char *file, char *const argv[]);
Which precludes code such as this from being used:
const char* argv[] = {"/bin/my", "command", "here", NULL};
execvp(argv[0], argv);
Was this an accidental omission? Is it safe to const_cast around this? Or do some execvp implementations actually scribble on that memory?