1 #include <config.h> 2 3 /* Specification. */ 4 #include "test-moo-asub1.h" 5 6 #pragma implementation 7 write(asub1_t x,void * buf,size_t len)8int asub1::write (asub1_t x, void *buf, size_t len) 9 { 10 fwrite (buf, 1, len, x->fp); 11 return 0; 12 } 13 do_free(asub1_t x)14void asub1::do_free (asub1_t x) 15 { 16 free (x); 17 } 18