¿ªÔÆÌåÓý

CMS GCC definition


 

Trying? to determine what uint8_t would be in CMS GCC, as uint8_t is not defined.

I need a unsigned 8-bit integer type to define in CMS GCC.? I have tried several different
definitions and none of them seem to work.? Any help, Thank You.

Thank You
Tom C.


 

On Sun, Dec 12, 2021 at 03:12 PM, Tom Chandler wrote:
I need a unsigned 8-bit integer type to define in CMS GCC.? I have tried several different
definitions and none of them seem to work.? Any help, Thank You.
In searchingLInux,? /usr/include/ and its subdirectories I ran into the following.? Since char seems to be byte aligned (it holds one character 'A', 'B', ...) it would be 8 bits long for EBCDIC/IBM.

bits/types.h:37:typedef unsigned char __uint8_t;

I Hope This Helps

?... Mark S.