Guest User

Untitled

a guest
Jan 23rd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #include<stdlib.h>
  2. #include<stdio.h>
  3.  
  4. void my_aff_comb2();
  5.  
  6. int main()
  7. {
  8. my_aff_comb2();
  9. }
  10.  
  11. void my_putchar(char c)
  12. {
  13. write(1, &c, 1);
  14. }
Add Comment
Please, Sign In to add comment