EtchedPixels / CC6303

A C compiler for the 6800 series processors
Other
37 stars 7 forks source link

Fix inclusion of ctype.h #28

Closed Mokona closed 6 months ago

Mokona commented 6 months ago

The presence of stdint.h inclusion in ctype.h is causing multiple definitions of size_t

Another fix would be to have only one definition of size_t (today in stdint.h and stddef.h).

As ctype.h don't need types from stdint.h today, I removed it.

EtchedPixels commented 6 months ago

Should be in stddef according to the standard