12 lines
192 B
C
12 lines
192 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <memory.h>
|
||
|
#include <libgen.h>
|
||
|
#define REAL_PATH "/usr/lib/mailman/bin/smelist.pl"
|
||
|
|
||
|
main(int argc, char **argv)
|
||
|
{
|
||
|
execv( REAL_PATH, argv);
|
||
|
}
|
||
|
|