first_file_asm.c 424 B

123456789101112131415161718192021
  1. #include <linux/init.h>
  2. const int first_crypto_asm_rodata = 10;
  3. int first_crypto_asm_data = 20;
  4. void first_crypto_asm_text (void) __attribute__((unused));
  5. void first_crypto_asm_text (void)
  6. {
  7. }
  8. void __init first_crypto_asm_init(void) __attribute__((unused));
  9. void __init first_crypto_asm_init(void)
  10. {
  11. }
  12. void __exit first_crypto_asm_exit(void) __attribute__((unused));
  13. void __exit first_crypto_asm_exit(void)
  14. {
  15. }