blob: 39be5acfa11182f4c46ed1f09f3c4bf27100499b [file] [log] [blame]
#include <stdint.h>
struct Foo {
uint8_t x;
};
struct Foo FOO = { 42 };
uint8_t bar(const struct Foo* foo) {
return foo->x;
}