Advertisement
Guest User

Untitled

a guest
Jul 6th, 2015
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. // contents of foo.c
  2.  
  3. int a(int)
  4. {
  5. print 6;
  6. }
  7.  
  8. static int b(int)
  9. {
  10. print 7;
  11. }
  12.  
  13. int c(int)
  14. {
  15. print 8;
  16. }
  17.  
  18. // contents of bar.c
  19.  
  20. import "foo.c"
  21.  
  22. int main(int* blah)
  23. {
  24. b();
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement