home *** CD-ROM | disk | FTP | other *** search
- /*
- * testwait.c --
- *
- * This file contains a simple program that will compile
- * correctly if and only if <sys/wait.h> defines the
- * type "union wait". It is used during configuration
- * to determine whether or not to use this type.
- *
- * Copyright 1991 Regents of the University of California
- * Permission to use, copy, modify, and distribute this
- * software and its documentation for any purpose and without
- * fee is hereby granted, provided that this copyright
- * notice appears in all copies. The University of California
- * makes no representations about the suitability of this
- * software for any purpose. It is provided "as is" without
- * express or implied warranty.
- */
-
- #ifndef lint
- static char rcsid[] = "$Header: /user6/ouster/tcl/compat/RCS/testwait.c,v 1.1 91/11/07 10:26:56 ouster Exp $ SPRITE (Berkeley)";
- #endif /* not lint */
-
- #include <sys/types.h>
- #include <sys/wait.h>
-
- union wait x;
-
- int main()
- {
- return 0;
- }
-