define INLINE to be "static inline" rather than "extern inline", so that

if this code is compiled without optimization the not-inlined functions
will be included (statically) in the object files, and now show up
as undefined references.
This commit is contained in:
cgd 1998-01-22 07:14:17 +00:00
parent 1c631d03ad
commit ecb2fd7aad
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: environment.h,v 1.2 1998/01/06 00:06:10 perry Exp $ */
/* $NetBSD: environment.h,v 1.3 1998/01/22 07:14:17 cgd Exp $ */
/*
===============================================================================
@ -44,5 +44,5 @@ a compiler does not support inlining, this macro should be defined to be
`static'.
-------------------------------------------------------------------------------
*/
#define INLINE extern inline
#define INLINE static inline