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 () ...
Altera_Forum
Honored Contributor
9 years agoThe problem is that some compiler often automatically export names defined in various headers or provided types before such standards were in place.
Now, I said "may not always work." That's because the cstdint header is part of the C++11 standard and is not always available on current C++ compilers (but often is). The stdint.h header is the C equivalent and is part of C99.