Path: utzoo!attcan!uunet!ginosko!usc!ucsd!ucbvax!hplabs!hpl-opus!hpnmdla!hpmwtd!jeffa
From: jeffa@hpmwtd.HP.COM (Jeff Aguilera)
Newsgroups: comp.lang.c
Subject: Re: Struct definition in MS-C
Message-ID: <680010@hpmwjaa.HP.COM>
Date: 17 Aug 89 23:51:43 GMT
References: 
Organization: HP Microwave Tech. - Santa Rosa, Ca.
Lines: 19

> struct node {
> 	
> 	...
> 	...
> 	struct node *next;
> 	};
> as it is with standard C, but this doesn't work with MS-C.

Are you SURE that doesn't work?  MS-C handles my linked lists
perfectly.  

You might try the following:

	typedef struct node *Node;

	struct node {
		...
		Node next;
	};