Drimbarean, Andrei
2018-01-03 15:50:41 UTC
Hello,
Andrei
Another small point, The Linux kernel frowns on typedefs for structs. So
really you want to turn it into
struct example
char me;
long you;
} struct_example;
int main (void) {
struct example *DeV;
...
}
Thank you!really you want to turn it into
struct example
char me;
long you;
} struct_example;
int main (void) {
struct example *DeV;
...
}
Andrei