-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

According to Elbert Pol on 4/6/2008 3:12 AM:
| Hello Eric,

| | fpurge.c: In function `fpurge':
| | fpurge.c:94: error: structure has no member named `_base'
| | fpurge.c:96: error: structure has no member named `_cnt'
| | make.exe[3]: *** [fpurge.o] Error 1

|
| I don't understand wich file you talking about?

What does struct FILE look like on your system?  It might be in
/usr/include/stdio.h, or in another file it includes.  You might also have
success using:

$ cat foo.c
#include <stdio.h>
$ cc -E foo.c

| And would you be precicer what you need to know about the system ?

If you're using gcc, this would also be helpful:

$ gcc -E -dM empty.c | sort

Basically, we're looking for the preprocessor macros that are predefined
by your compiler/system so that we can identify when to use the particular
hacks to look inside your system's struct FILE.

- --
Don't work too hard, make some time for fun as well!

Eric Blake             [EMAIL PROTECTED]
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (Cygwin)
Comment: Public key at home.comcast.net/~ericblake/eblake.gpg
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkf63eQACgkQ84KuGfSFAYCAJQCcDaSlNjY7zeOYDlWSyfTlmUwd
ZUIAoI+8lSOGNaK3TNolouc/ol3IxkYt
=5BZS
-----END PGP SIGNATURE-----


Reply via email to