#include "libvecmat.h" int destroyvec(vector * vecin) { //Recall the prototype! //int destroyvec(vector *); free(vecin->elements); return 0; }