Forum Discussion
Altera_Forum
Honored Contributor
9 years agoNot able to resolve "#include <stdint.h>"
Hi, I am using NIOS II EDS 9.1 to generate a sample project from template. I am able to build sample project. Then i added below include file. # include <stdint.h> int main () ...
LucasM
New Contributor
5 years agoYou can try using <alt_types.h>, which provides equivalent types to those in <stdint.h>, but prefixed with 'alt_' so 'int8_t' becomes 'alt_8' and 'uint32_t' becomes 'alt_u32'.