blob: 49c8923c4c0e8895d1e2f3f7701c3bc80d2b1cc8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <stdio.h>
__declspec(dllimport) int test_entry();
// This is plain Windows code, not ACE. Therefore we disable
// the check for ACE_OS
// FUZZ: disable check_for_lack_ACE_OS
// FUZZ: disable check_for_improper_main_declaration
int main (int, char *[])
{
char line[80];
test_entry();
puts ("Ok, go... hit return to stop.");
gets (line);
return 0;
}
|