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