diff --git a/winsup/doc/ChangeLog b/winsup/doc/ChangeLog index 392f06d63..39e2240d3 100644 --- a/winsup/doc/ChangeLog +++ b/winsup/doc/ChangeLog @@ -1,3 +1,7 @@ +2005-12-12 Joshua Daniel Franklin + + * faq-programming.xml: Add note about struct stat64. + 2005-12-03 Joshua Daniel Franklin * faq-setup.xml: Add note about clean_setup.pl. diff --git a/winsup/doc/faq-programming.xml b/winsup/doc/faq-programming.xml index af08be354..856e93c37 100644 --- a/winsup/doc/faq-programming.xml +++ b/winsup/doc/faq-programming.xml @@ -705,6 +705,14 @@ This is right gcc hello.cc -lstdc++. + +Why do I get an error using struct stat64? + + +struct stat64 is not used in Cygwin, just +use struct stat. + + I use a function I know is in the API, but I still get a link error.