Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10 5/3/83; site orion.UUCP Path: utzoo!linus!decvax!harpo!floyd!clyde!ihnp4!houxm!hogpc!houca!orion!reha From: reha@orion.UUCP Newsgroups: net.lang.c Subject: obsolete operators in C Message-ID: <303@orion.UUCP> Date: Tue, 6-Dec-83 10:50:42 EST Article-I.D.: orion.303 Posted: Tue Dec 6 10:50:42 1983 Date-Received: Fri, 9-Dec-83 01:43:54 EST Organization: ABI - ED&D, Holmdel, NJ Lines: 14 For you C history bufs: Back in the old days of the V6 PDP 11 C compiler there were two partially implemented operators; the "min" and the "max" operators. Lexically the "max" operator was "/\" and the "min" operator was "\/". So you could write expressions like: a = a /\ 10; to give you the maximum of a or 10. The only problem was that even though the operators existed the code generators table were not defined. It is intersting to speculate why the operators died prematurely. They died in the V7 release of the compiler.