Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!watmath!clyde!cbatt!ihnp4!houxm!hropus!ki4pv!tanner From: tanner@ki4pv.UUCP Newsgroups: comp.lang.c Subject: Re: lint as a part of cc Message-ID: <6931@ki4pv.UUCP> Date: Fri, 16-Jan-87 11:16:05 EST Article-I.D.: ki4pv.6931 Posted: Fri Jan 16 11:16:05 1987 Date-Received: Sat, 17-Jan-87 06:58:33 EST Organization: CompuData South, DeLand Lines: 14 ) There should also be a way to shut off lint complaints about non- ) portable code in just a small, known region (#ifdef MY_MACH_TYPE) Sure enough, there is. We use it here often enough for some obscure and non-portable library refs which shrink the final object code: #ifndef lint #ifdef MY_MACH_TYPE /* my rather lint-clogged 4 lines of crud */ /* with explanation of what's going on & why it's mach-dep */ #endif #endif -- Tanner Andrews