Cleanup ACE_HAS_PTHREAD_SIGMASK_PROTOTYPE, all platforms support it so far as I can...
[ACE_TAO.git] / ACE / bin / LabVIEW_RT / labview_test_controller / test.cpp
blob49c8923c4c0e8895d1e2f3f7701c3bc80d2b1cc8
1 #include <stdio.h>
2 __declspec(dllimport) int test_entry();
4 // This is plain Windows code, not ACE. Therefore we disable
5 // the check for ACE_OS
6 // FUZZ: disable check_for_lack_ACE_OS
7 // FUZZ: disable check_for_improper_main_declaration
9 int main (int, char *[])
11 char line[80];
12 test_entry();
13 puts ("Ok, go... hit return to stop.");
14 gets (line);
15 return 0;