1 /*
2  * Stub for testing linkage requirements of I/O drivers.
3  *
4  * $Id: test_io.c,v 1.3 2006/01/10 23:28:47 tom Exp $
5  */
6 
7 #include <estruct.h>
8 
9 #define realdef			/* Make global definitions not external */
10 #include	"edef.h"	/* global declarations */
11 
12 int
main(int argc,char ** argv)13 main(int argc, char **argv)
14 {
15 
16     TERM *test = &term;
17 
18     return (test != 0) ? EXIT_SUCCESS : EXIT_FAILURE;
19 }
20