change an #if __GNUC >= 2 to #if (__GNUC__ >= 2) || defined(lint)

to get the right definition of qshift_t.
This commit is contained in:
christos 1999-05-03 15:39:47 +00:00
parent 9ed746aaf1
commit 314e0b18b9

View File

@ -1,4 +1,4 @@
/* $NetBSD: quad.h,v 1.6 1998/03/27 01:01:54 cgd Exp $ */
/* $NetBSD: quad.h,v 1.7 1999/05/03 15:39:47 christos Exp $ */
/*-
* Copyright (c) 1992, 1993
@ -107,7 +107,7 @@ union uu {
* as u_quad_t, while gcc 2 correctly uses int. Unfortunately, we still use
* both compilers.
*/
#if __GNUC__ >= 2
#if (__GNUC__ >= 2) || defined(lint)
typedef unsigned int qshift_t;
#else
typedef u_quad_t qshift_t;