We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I tested the following source file:
#include <stdio.h> #define __SAMC21N18A__ #define SAM_PART_IS_DEFINED(part) (defined(__ ## part ## __)) #define SAM SAM_PART_IS_DEFINED(SAMC21N18A) int main() { #if SAM printf("Hello World"); #endif return 0; }
gcc compiles it and the application shows "Hello World" as expected. However, when I process with simplecpp, I obtain:
$ simplecpp mytest.c int main ( ) { return 0 ; } mytest.c:1: missing header: Header not found: <stdio.h>
The macro SAM_PART_IS_DEFINED() is derived from a third party library from Atmel/Microchip. See here
The text was updated successfully, but these errors were encountered:
Think this is the same error I am experiencing: #300
Sorry, something went wrong.
No branches or pull requests
I tested the following source file:
gcc compiles it and the application shows "Hello World" as expected. However, when I process with simplecpp, I obtain:
The macro SAM_PART_IS_DEFINED() is derived from a third party library from Atmel/Microchip. See here
The text was updated successfully, but these errors were encountered: