From aacb56dd2f766175bb33c0ff86ac0f6f79d6b50c Mon Sep 17 00:00:00 2001 From: simonpj Date: Fri, 30 Aug 2002 14:54:58 +0000 Subject: [PATCH] [project @ 2002-08-30 14:54:58 by simonpj] Move defn of hs_fileno inside ifdef --- include/HsBase.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/HsBase.h b/include/HsBase.h index f409a96..0dbc776 100644 --- a/include/HsBase.h +++ b/include/HsBase.h @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: HsBase.h,v 1.11 2002/08/29 11:49:11 simonmar Exp $ + * $Id: HsBase.h,v 1.12 2002/08/30 14:54:58 simonpj Exp $ * * (c) The University of Glasgow 2001-2002 * @@ -585,6 +585,7 @@ __hscore_f_setfl( void ) #endif } +INLINE int __hscore_hs_fileno (FILE *f) { return fileno (f); } + #endif -INLINE int __hscore_hs_fileno (FILE *f) { return fileno (f); } -- 1.7.10.4