1*8530b1c4SDave Lee #include <stdint.h> 2*8530b1c4SDave Lee #include <stdio.h> 3*8530b1c4SDave Lee 4*8530b1c4SDave Lee struct Bytes { 5*8530b1c4SDave Lee uint8_t ubyte; 6*8530b1c4SDave Lee int8_t sbyte; 7*8530b1c4SDave Lee }; 8*8530b1c4SDave Lee main()9*8530b1c4SDave Leeint main() { 10*8530b1c4SDave Lee struct Bytes bytes = {0x30, 0x01}; 11*8530b1c4SDave Lee (void)bytes; 12*8530b1c4SDave Lee printf("break here\n"); 13*8530b1c4SDave Lee } 14