Path: utzoo!attcan!utgpu!jarvis.csri.toronto.edu!rutgers!gatech!ncsuvx!ccpv1.ncsu.edu!rcb From: rcb@ccpv1.ncsu.edu (Randy Buckland) Newsgroups: comp.sys.mac.programmer Subject: Think C 4.0 question Message-ID: <4154@ncsuvx.ncsu.edu> Date: 10 Oct 89 12:46:29 GMT Sender: news@ncsuvx.ncsu.edu Distribution: comp Lines: 17 One question about think c 4.0. Does it allow normal ANSI C function definitions? For example: main (int argc, char *argv[]) { stuff } instead of: main (argc, argv) int argc; char *argv[]; { stuff } I know 3.0 allows the top form for prototypes, but it will not allow it for the actual definition of the function. Randy Buckland rcb@ncsuvx.ncsu.edu