This is the mail archive of the libc-help@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Parse glibc header file


On Friday, October 08, 2010 08:13:23 Davide Italiano wrote:
> I'm running in the problem that gcc -E doesn't remove things like
> __wur or __THROW and I managed it using sed removing one by one the
> patterns but I was looking for a more general way/

works just fine for me.  you need to provide some actual details instead of 
vague statements.

$ grep -c wur /usr/include/unistd.h
46
$ echo '#incude <unistd.h>' | gcc -E - | grep -c wur
0
-mike

Attachment: signature.asc
Description: This is a digitally signed message part.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]