1 1.2 mycroft /* 2 1.2 mycroft * Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. 3 1.2 mycroft * 4 1.3 cgd * $NetBSD: def.wseg.h,v 1.3 1995/03/23 08:29:42 cgd 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