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
This code is OK:
int __attribute__((__nothrow__)) fct() {}
but this one failed:
int * __attribute__((__nothrow__)) fct() {}
Error given is: pycparser.plyparser.ParseError: :1:7: before: __attribute__
pycparser.plyparser.ParseError: :1:7: before: __attribute__
I tried to fix this bug myself, without success.
I discovered that when trying to parse stdio.h from Mingw. Preprocessed sample:
__attribute__ ((__dllimport__)) FILE *__attribute__((__cdecl__)) _fsopen(const char *_Filename,const char *_Mode,int _ShFlag);
The text was updated successfully, but these errors were encountered:
Thanks for reporting this issue. I unfortunately do not have the spare cycles to debug this at this moment, but I'd be happy to take a patch.
Sorry, something went wrong.
No branches or pull requests
This code is OK:
but this one failed:
Error given is:
pycparser.plyparser.ParseError: :1:7: before: __attribute__
I tried to fix this bug myself, without success.
I discovered that when trying to parse stdio.h from Mingw.
Preprocessed sample:
The text was updated successfully, but these errors were encountered: