cc65 / cc65

cc65 - a freeware C compiler for 6502 based systems

Home Page:https://cc65.github.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[cc65] Qualifiers of pointees of function parameters ignored for type compatibility check

acqn opened this issue · comments

commented
void woo(int* p);
void woo(const int* p); /* WRONG: Should be an error */