From: panne Date: Fri, 26 Sep 2003 12:11:18 +0000 (+0000) Subject: [project @ 2003-09-26 12:11:18 by panne] X-Git-Tag: Approx_11550_changesets_converted~407 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=a40e9b9216cdfffc1adc2047eb809b0026d45028;p=ghc-hetmet.git [project @ 2003-09-26 12:11:18 by panne] Added prototypes for __hscore_[gs]et_saved_termios to make Linker.c happy and avoid warnings in RtsStartup.c --- diff --git a/ghc/rts/RtsUtils.h b/ghc/rts/RtsUtils.h index d2a7571..2adcf35 100644 --- a/ghc/rts/RtsUtils.h +++ b/ghc/rts/RtsUtils.h @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: RtsUtils.h,v 1.17 2003/06/09 13:17:40 matthewc Exp $ + * $Id: RtsUtils.h,v 1.18 2003/09/26 12:11:18 panne Exp $ * * (c) The GHC Team, 1998-1999 * @@ -39,3 +39,6 @@ ullong msTime(void); #ifdef DEBUG extern void heapCheckFail( void ); #endif + +extern void* __hscore_get_saved_termios(int fd); +extern void __hscore_set_saved_termios(int fd, void* ts);