#include "defs.h" /* * Copy x/y coordinates. * * f = from position * t = to position */ copypt(f, t) REG DL f, t; { t->x = f->x; t->y = f->y; }