Guest User

Untitled

a guest
Jan 22nd, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #include "tco.h"
  2. #include <stdlib.h>
  3. #include <stdarg.h>
  4.  
  5. conscell cons_f(void *car, void *cdr)
  6. {
  7. conscell ret = malloc(sizeof(struct conscell_str));
  8.  
  9. ret->car = car;
  10. ret->cdr = cdr;
  11.  
  12. return ret;
  13. }
  14.  
  15. #define MAXARGS 31
Add Comment
Please, Sign In to add comment