]>
Commit | Line | Data |
---|---|---|
39a8cd10 A |
1 | #include <stdio.h> // fprintf(), NULL |
2 | #include <stdlib.h> // exit(), EXIT_SUCCESS | |
3 | #include <string.h> // strcmp(), strncmp() | |
4 | #include <unistd.h> // issetugid | |
5 | #include "test.h" // PASS(), FAIL(), XPASS(), XFAIL() | |
6 | ||
7 | ||
8 | extern int foo(); | |
9 | ||
10 | int main(int argc, const char* argv[]) | |
11 | { | |
12 | foo(); | |
13 | return EXIT_SUCCESS; | |
14 | } |