Visual c++ doesn't have sys/wait.h

c, visual-studio-2010

Solution

If you're looking for the `wait()` equivalent of MSVS, look no further than WaitForSingleObject().

Problem

I have downloaded the timezone database library and am trying to compile it under windows to a DLL. When I do this, I get messages like: ``` 1>c:\javatools\tzinfo\src\private.h(97): fatal error C1083: Cannot open include file: 'sys/wait.h': No such file or directory ``` and, of course, sys/wait.h is not ANSI C, which is the issue. I seem to recall windows have some near file names to this. Can I get an assist here? Thanks.

Original source