mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-13 20:12:26 +00:00
12 lines
221 B
C
12 lines
221 B
C
/* https://cirosantilli.com/linux-kernel-module-cheat#c-empty-struct */
|
|
|
|
#include <assert.h>
|
|
#include <stdlib.h>
|
|
|
|
int main(void) {
|
|
struct s {};
|
|
struct s s0;
|
|
assert(sizeof(s0) == 0);
|
|
return EXIT_SUCCESS;
|
|
}
|