/* Copyright ©2007-2010 Kris Maglione * See LICENSE file for license details. */ #include "../x11.h" Point mulpt(Point p, Point q) { p.x *= q.x; p.y *= q.y; return p; }