I'm trying to learn me some C, and have run into what is probably a simple problem. I'm trying to compile some code which contains the following declaration:
int32 count;
However, this results in an error at compile time:
test.c:21: error: ‘int32’ undeclared (first use in this function)
Is there a particular compile-time option I need to set for gcc, or an #include
directive that will solve this?
p.s. I'm running on Ubuntu Intrepid.