C headers, part 2
C headers, part 2
(OP)
Non-C programmer here.
I'm using GCC and Gfortran V5.2 (which BTW self compiled perfectly), on Windows7(64).
I'm getting this C error.
rpc/types.h:78:9: error: unknown type name '__u_char'
typedef __u_char u_char;
What does the double underscore do, what does it mean?
Thank you.
I'm using GCC and Gfortran V5.2 (which BTW self compiled perfectly), on Windows7(64).
I'm getting this C error.
rpc/types.h:78:9: error: unknown type name '__u_char'
typedef __u_char u_char;
What does the double underscore do, what does it mean?
Thank you.





RE: C headers, part 2
Dan - Owner
http://www.Hi-TecDesigns.com
RE: C headers, part 2
Therefor in this case, since I have the source code, does it make sense to remove all the double underscores?
Thank you.
RE: C headers, part 2
Or are you actually typing in the double underscores?
Keith Cress
kcress - http://www.flaminsystems.com
RE: C headers, part 2
Dan - Owner
http://www.Hi-TecDesigns.com
RE: C headers, part 2
Sometimes open source projects compile link and run effortlessly which motivates you to try another, like this project, which requires the xdr components from glibc.
The source code is readily available but the headers account for half the code.
It's convoluted because of all the ifdef possibilities to accommodate compiling on almost any hardware.
Thank you for your input.
RE: C headers, part 2
http://www.codeblocks.org/
RE: C headers, part 2
I'm using a combination of command-line and makefile, and Codeblocks.