Conflicting declaration

Viewed 28856

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.

2 Answers
Related