I want to do this:
typedef register unsigned int _newint;
Basically, a concise alias of register unsigned int as _newint.
But an error, "more than one storage class may not be specified," occurs, underlining register.
I want to know if I can do this or not; if yes then how?