X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Frts%2FRtsUtils.h;h=efa178a4d34ef0a16e119f394b6779516b19b363;hb=51d5aa5a6dae21bd2e6995f0f196fdde39088921;hp=4f2b296981891f195f34b65444e4a6a7c05088d6;hpb=20593d1d1cf47050d9430895a1c2ada6c39dfb98;p=ghc-hetmet.git diff --git a/ghc/rts/RtsUtils.h b/ghc/rts/RtsUtils.h index 4f2b296..efa178a 100644 --- a/ghc/rts/RtsUtils.h +++ b/ghc/rts/RtsUtils.h @@ -1,16 +1,18 @@ /* ----------------------------------------------------------------------------- - * $Id: RtsUtils.h,v 1.19 2003/11/12 17:49:10 sof Exp $ * - * (c) The GHC Team, 1998-1999 + * (c) The GHC Team, 1998-2004 * * General utility functions used in the RTS. * * ---------------------------------------------------------------------------*/ +#ifndef RTSUTILS_H +#define RTSUTILS_H + /* (Checked) dynamic allocation: */ -extern void *stgMallocBytes(int n, char *msg); +extern void *stgMallocBytes(int n, char *msg) GNUC3_ATTRIBUTE(__malloc__); extern void *stgReallocBytes(void *p, int n, char *msg); -extern void *stgCallocBytes(int n, int m, char *msg); +extern void *stgCallocBytes(int n, int m, char *msg) GNUC3_ATTRIBUTE(__malloc__); extern void stgFree(void* p); extern void barf(char *s, ...) GNU_ATTRIBUTE(__noreturn__); @@ -39,3 +41,5 @@ extern void heapCheckFail( void ); extern void* __hscore_get_saved_termios(int fd); extern void __hscore_set_saved_termios(int fd, void* ts); + +#endif // RTSUTILS_H