13 lines
281 B
C
13 lines
281 B
C
/*
|
|
* Copyright information and license terms for this software can be
|
|
* found in the file LICENSE that is included with the distribution
|
|
*/
|
|
|
|
extern void pvAccessAllTests(void);
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
pvAccessAllTests(); /* calls epicsExit(0) */
|
|
return 0;
|
|
}
|