Reputation: 359
I'm currenty trying to make some source code written in linux C++ in windows using cygwin, and keep getting error: sys/resource.h: No such file or directory
Is there any package in cygwin that include sys/resource.h? if so what package?
I've tried googling it but haven't found anything yet, thx for your help
Upvotes: 4
Views: 6167
Reputation: 3917
sys/resource.h belongs to the cygwin package itself.
$ cygcheck -l cygwin | grep resource.h
/usr/include/sys/resource.h
If you got cygwin, then you must surely have sys/resource.h
Upvotes: 7