repo.or.cz
/
cinelerra_cv
/
ct.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'ct' of git.pipapo.org:cinelerra-ct into ct
[cinelerra_cv/ct.git]
/
cinelerra
/
test.C
blob
e2e89281f5cad39759368b6cc56f1a8cd06672b5
1
#include "threadfork.h"
2
3
#include <stdio.h>
4
#include <stdlib.h>
5
#include <unistd.h>
6
7
8
9
int main()
10
{
11
ThreadFork *test;
12
test = new ThreadFork;
13
test->start_command("ls", 0);
14
delete test;
15
}
16
/*
17
// Local Variables:
18
// mode: C++
19
// c-file-style: "linux"
20
// End:
21
*/