You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pycparser raises a parser error when trying to parse statements that contain #pragma.
A typical example comes from Apple's iPhoneOS.sdk/usr/include/sys/event.h:371 (SDK 13).
The relevant sys/event.h:371 source code is:
structknote;
SLIST_HEAD(klist, knote);
Once pre-processed, the SLIST_HEAD macro expands to:
Pycparser raises a parser error when trying to parse statements that contain
#pragma
.A typical example comes from Apple's
iPhoneOS.sdk/usr/include/sys/event.h:371
(SDK 13).The relevant
sys/event.h:371
source code is:Once pre-processed, the
SLIST_HEAD
macro expands to:Note the
#pragma
that comes before the end-of-statement;
.When parsing, pycparser raises the following error:
The text was updated successfully, but these errors were encountered: