I have a typedef defined in my code as
typdef unsigned int size_t;
it is conflicting with stddef's
typedef __SIZE_TYPE__ size_t;
I'm unsure how to get around this but would still like to keep size_t in my code.
I have a typedef defined in my code as
typdef unsigned int size_t;
it is conflicting with stddef's
typedef __SIZE_TYPE__ size_t;
I'm unsure how to get around this but would still like to keep size_t in my code.