]>
Commit | Line | Data |
---|---|---|
39a8cd10 A |
1 | |
2 | ||
3 | #include <stdio.h> // fprintf(), NULL | |
4 | #include <stdlib.h> // exit(), EXIT_SUCCESS | |
5 | #include <stdbool.h> | |
6 | ||
7 | #include "test.h" // PASS(), FAIL(), XPASS(), XFAIL() | |
8 | ||
9 | ||
10 | extern bool foo1(); | |
11 | extern bool foo2(); | |
12 | ||
13 | ||
14 | int main() | |
15 | { | |
16 | if ( foo1() && foo2() ) | |
17 | PASS("weak-lazy-slidable"); | |
18 | else | |
19 | FAIL("weak-lazy-slidable"); | |
20 | ||
21 | return EXIT_SUCCESS; | |
22 | } | |
23 | ||
24 |