Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. void do_sth() {
  2. /* ... */
  3. }
  4. EXPORT_SYMBOL(do_sth);
  5.  
  6. extern void do_sth();
  7.  
  8. void some_function(void) {
  9. /* ... */
  10. do_sth();
  11. /* ... */
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement