summaryrefslogtreecommitdiffstats
path: root/hack/def.wseg.h
blob: add0b2434a7e7979025f3613944d17bd9272493e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985.
 *
 *	$Id: def.wseg.h,v 1.2 1993/08/02 17:16:55 mycroft Exp $
 */

#ifndef NOWORM
/* worm structure */
struct wseg {
	struct wseg *nseg;
	xchar wx,wy;
	unsigned wdispl:1;
};

#define newseg()	(struct wseg *) alloc(sizeof(struct wseg))
#endif NOWORM