Xref: utzoo comp.lang.c:13160 comp.std.c:414 comp.lang.scheme.c:20 comp.unix.questions:9626 Path: utzoo!attcan!uunet!husc6!mailrus!nrl-cmf!cmcl2!rutgers!elbereth.rutgers.edu!ron.rutgers.edu!ron From: ron@ron.rutgers.edu (Ron Natalie) Newsgroups: comp.lang.c,comp.std.c,comp.lang.scheme.c,comp.unix.questions Subject: Re: ????? HELP!!! what is wring with this code? ??????? Message-ID: Date: 7 Oct 88 01:52:47 GMT References: <456@mrsvr.UUCP> Organization: Rutgers Univ., New Brunswick, N.J. Lines: 6 The error is a warning. "Strtok" is not declared anywhere and hence is assumed to return integer. You stuff it in a char pointer. The C compiler is trying to help you write portable code. -Ron