diff options
Diffstat (limited to 'src/crontab-access.c.in')
-rw-r--r-- | src/crontab-access.c.in | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/crontab-access.c.in b/src/crontab-access.c.in new file mode 100644 index 0000000..652b9cc --- /dev/null +++ b/src/crontab-access.c.in @@ -0,0 +1,10 @@ +#include <unistd.h> + +int main(int argc, char **argv) +{ + char *envp = NULL; + execve("%libexecdir%/crontab-access-real", + argv, &envp); + /* Should not get here! */ + return 1; +} |