Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!uunet!husc6!uwvax!uwmacc!uwmcsd1!bbn!diamond.bbn.com!mlandau From: mlandau@bbn.com (Matt Landau) Newsgroups: comp.unix.questions Subject: Re: RE: UNIX NAME ABBREVIATIONS Message-ID: <10388@slate.BBN.COM> Date: Thu, 19-Nov-87 10:17:03 EST Article-I.D.: slate.10388 Posted: Thu Nov 19 10:17:03 1987 Date-Received: Sat, 21-Nov-87 19:49:02 EST References: <10376@brl-adm.ARPA> <16550@topaz.rutgers.edu> <388@cogen.UUCP> Reply-To: mlandau@bbn.com (Matt Landau) Organization: BBN Laboratories Incorporated, Cambridge, MA Lines: 14 In comp.unix.questions (<388@cogen.UUCP>), alen@cogen.UUCP (Alen Shapiro) writes: >In article <16550@topaz.rutgers.edu> ron@topaz.rutgers.edu (Ron Natalie) writes: >> >>crt - c run time > >well, sort of, but the normal use of crt (before C was even a twinkle >in anyone's eye was): > Cathode Ray Tube I suspect Ron was talking about "crt" as in "crt0.o", which is the usual name for the piece of code that gets included automaitcally by most Unix linkers. The code in crt0.o contains the intial entry point called at runtime, which does things like set up argc, argv, and envp and then call main.