J
jacob navia
I am releasing the first version of the container library this week.
I have 2 problems to solve, where I would appreciate your help
(1): long long doesn't exist in C90. Is there a way of circumventing
that? How could I detect at compile time if long long is supported?
In any way I can always publish the code so that C90 works in 32 bits
only. People that need 64 bits would use a 64 bit compiler.
(2) The"%z" specifier doesn't exist in C90. Is there any work around?
My command line under UNIX is:
gcc -g -Wno-pointer-sign -DUNIX -Wall -pedantic -c -o foo.o foo.c
Thanks
I have 2 problems to solve, where I would appreciate your help
(1): long long doesn't exist in C90. Is there a way of circumventing
that? How could I detect at compile time if long long is supported?
In any way I can always publish the code so that C90 works in 32 bits
only. People that need 64 bits would use a 64 bit compiler.
(2) The"%z" specifier doesn't exist in C90. Is there any work around?
My command line under UNIX is:
gcc -g -Wno-pointer-sign -DUNIX -Wall -pedantic -c -o foo.o foo.c
Thanks