last_file.c 386 B

1234567891011121314151617181920
  1. #include <linux/init.h>
  2. const int last_crypto_rodata = 1000;
  3. int last_crypto_data = 2000;
  4. void last_crypto_text(void) __attribute__((unused));
  5. void last_crypto_text (void)
  6. {
  7. }
  8. void __init last_crypto_init(void) __attribute__((unused));
  9. void __init last_crypto_init(void)
  10. {
  11. }
  12. void __exit last_crypto_exit(void) __attribute__((unused));
  13. void __exit last_crypto_exit(void)
  14. {
  15. }