00001 #include "threadfork.h" 00002 00003 #include <stdio.h> 00004 #include <stdlib.h> 00005 #include <unistd.h> 00006 00007 00008 00009 int main() 00010 { 00011 ThreadFork *test; 00012 test = new ThreadFork; 00013 test->start_command("ls", 0); 00014 delete test; 00015 }
1.4.4