Date: Sat, 7 Jun 2003 11:13:15 -0700 From: "David O'Brien" <obrien@freebsd.org> To: Tim Kientzle <kientzle@acm.org> Cc: current@freebsd.org Subject: Re: Can't build -CURRENT on 4.7 Message-ID: <20030607181315.GF70196@dragon.nuxi.com> In-Reply-To: <3EE22307.7020100@acm.org> References: <200306070438.h574cs52049913@cueball.rtp.FreeBSD.org> <3EE16E0F.2050207@acm.org> <20030607065700.GA59525@dragon.nuxi.com> <3EE22307.7020100@acm.org>
next in thread | previous in thread | raw e-mail | index | archive | help
On Sat, Jun 07, 2003 at 10:38:15AM -0700, Tim Kientzle wrote: > Index: usr.bin/xlint/lint1/cgram.y > =================================================================== > RCS file: /usr/src/cvs/src/usr.bin/xlint/lint1/cgram.y,v > retrieving revision 1.7 > diff -u -r1.7 cgram.y > --- usr.bin/xlint/lint1/cgram.y 3 Mar 2002 15:12:19 -0000 1.7 > +++ usr.bin/xlint/lint1/cgram.y 7 Jun 2003 06:30:12 -0000 > @@ -1642,17 +1642,17 @@ > -static inline int uq_gt(uint64_t, uint64_t); > -static inline int q_gt(int64_t, int64_t); > +static __inline int uq_gt(uint64_t, uint64_t); > +static __inline int q_gt(int64_t, int64_t); > > -static inline int > +static __inline int > uq_gt(uint64_t a, uint64_t b) > { > > return (a > b); > } > > -static inline int > +static __inline int Good catch! The rest of the file used __include everywhere. I've fixed the inconsistency.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20030607181315.GF70196>