11.07.2015 Views

PicC 9.50 dsPIC Manual.pdf

PicC 9.50 dsPIC Manual.pdf

PicC 9.50 dsPIC Manual.pdf

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Error and Warning Messages(258) duplicate qualifier (Parser)There are two occurrences of the same qualifier in this type specification. This can occur eitherdirectly or through the use of a typedef. Remove the redundant qualifier. For example:typedef volatile int vint;volatile vint very_vol; /* woops -- this results in two volatile qualifiers */(259) can’t be both far and near (Parser)It is illegal to qualify a type as both far and near, e.g.:far near int spooky; /* woops -- choose either far or near, not both */(260) undefined enum tag: * (Parser)This enum tag has not been defined, e.g.:enum WHAT what; /* a definition for WHAT was never seen */(261) member * redefined (Parser)This name of this member of the struct or union has already been used in this struct or union, e.g.:struct {int a;int b;int a; /* woops -- a different name is required here */} input;(262) struct/union redefined: * (Parser)A structure or union has been defined more than once, e.g.:struct {int a;} ms;struct {int a;} ms; /* was this meant to be the same name as above? */255

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!