1 /* 2 * Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. 3 * 4 * $Id: def.wseg.h,v 1.2 1993/08/02 17:16:55 mycroft Exp $ 5 */ 6 7 #ifndef NOWORM 8 /* worm structure */ 9 struct wseg { 10 struct wseg *nseg; 11 xchar wx,wy; 12 unsigned wdispl:1; 13 }; 14 15 #define newseg() (struct wseg *) alloc(sizeof(struct wseg)) 16 #endif NOWORM 17