]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/net/autotest/v2_0/host/_suping.c
Initial revision
[karo-tx-redboot.git] / packages / net / autotest / v2_0 / host / _suping.c
1 // _suping.c
2
3 #include <unistd.h>
4
5 // This a piece of lameness to convince ping to do a floodping.
6 int main( int argc, char **argv )
7 {
8     setuid( 0 );
9     execvp( "ping", argv );
10     perror( "What, no ping?" );
11     exit( 1 );
12 }
13
14 // EOF