Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!watmath!clyde!burl!ulysses!harpo!seismo!hao!hplabs!sri-unix!craig@bbn-labs-b From: craig%bbn-labs-b@sri-unix.UUCP Newsgroups: net.unix-wizards Subject: Minor bugs in lint libraries Message-ID: <12325@sri-arpa.UUCP> Date: Mon, 16-Apr-84 13:56:44 EST Article-I.D.: sri-arpa.12325 Posted: Mon Apr 16 13:56:44 1984 Date-Received: Sat, 21-Apr-84 01:37:10 EST Lines: 24 From: Craig Partridge sigvec(2) and getgroups(2) were misdefined in /usr/lib/lint/llib-lc (on both the SUN 4.2 release and Berkeley's 4.2 release for the Vax). A diff listing is below (bad lines were just commented out and replaced). After fixing use lint with the -C switch to fix the .ln file. Craig Partridge craig@bbn-unix craig!bbncca 48c48,50 < int getgroups( n, g ) int *n, *g; { return 0; } --- > /* a buggy line */ > /* int getgroups( n, g ) int *n, *g; { return 0; } */ > int getgroups( n, g ) int n, *g; { return n; } 117c119,121 < int (*sigvec(c, f, m))() int (*f)(); { return(f); } --- > /* a buggy line */ > /* int (*sigvec(c, f, m))() int (*f)(); { return(f); } */ > int sigvec(s,v,o) struct sigvec *v, *o; { return s; }