I am currently working on C 32-bit embedded architecture, and I would like to put all my variables in a non-primitive type for 64 bit.
ie: unsigned long long -> uint64_t
Is there a way to overwrite primitive types?
Like typedef uint32_t int
I am currently working on C 32-bit embedded architecture, and I would like to put all my variables in a non-primitive type for 64 bit.
ie: unsigned long long -> uint64_t
Is there a way to overwrite primitive types?
Like typedef uint32_t int