empty_struct.c 228 B

123456789101112
  1. /* https://github.com/cirosantilli/linux-kernel-module-cheat#c-empty-struct */
  2. #include <assert.h>
  3. #include <stdlib.h>
  4. int main(void) {
  5. struct s {};
  6. struct s s0;
  7. assert(sizeof(s0) == 0);
  8. return EXIT_SUCCESS;
  9. }