|
From: Greg C. <gch...@sb...> - 2008-01-17 21:02:51
|
[reformatted--please break lines at 70 characters or so] On 2008-01-17 20:46Z, Brian Antao wrote: > Hello,The standard release of MinGW/msys does not contain the > filesys/resource.h. I need this file for a compilation. Where > in the distributionCan I find it ?Thanks very much in advance. > -- Brian The posix header <sys/resource.h> ? MinGW isn't posix: it's gcc plus the msw api, and uses an msw C runtime library. The header wouldn't help without an implementation of the functions it prototypes. Your options include: (1) rewrite the program to use msw system calls; (2) try cygwin instead. |