From: simonpj Date: Fri, 30 Aug 2002 14:54:58 +0000 (+0000) Subject: [project @ 2002-08-30 14:54:58 by simonpj] X-Git-Tag: nhc98-1-18-release~883 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;ds=sidebyside;h=aacb56dd2f766175bb33c0ff86ac0f6f79d6b50c;p=ghc-base.git [project @ 2002-08-30 14:54:58 by simonpj] Move defn of hs_fileno inside ifdef --- 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); }