1 1.1 cgd /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ 2 1.1 cgd /* def.wseg.h - version 1.0.2 */ 3 1.1 cgd 4 1.1 cgd #ifndef NOWORM 5 1.1 cgd /* worm structure */ 6 1.1 cgd struct wseg { 7 1.1 cgd struct wseg *nseg; 8 1.1 cgd xchar wx,wy; 9 1.1 cgd unsigned wdispl:1; 10 1.1 cgd }; 11 1.1 cgd 12 1.1 cgd #define newseg() (struct wseg *) alloc(sizeof(struct wseg)) 13 1.1 cgd #endif NOWORM 14