#include "utils/geo-decls.h"


char *bin_path_out(path)

PATH	*path;
{
  int len;
  char *r= palloc(len= (sizeof(PATH) + (path->npts - 1) * sizeof(POINT)));
#if 1 /* tom@izf.tno.nl */
  bcopy("\001\002\003\000\001\000", r, 6);
#else
  bcopy(path, r, len);
#endif
  return r;
}
