X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Frts%2FRtsUtils.h;h=efa178a4d34ef0a16e119f394b6779516b19b363;hb=53386c359c55bd6eaa13c35fe174c9274ff5888e;hp=cd02f47104a497664230dd2845ca67937136a390;hpb=7aa38e04cfdee5d162ba8ae8a1c6f4e52fd0dea0;p=ghc-hetmet.git diff --git a/ghc/rts/RtsUtils.h b/ghc/rts/RtsUtils.h index cd02f47..efa178a 100644 --- a/ghc/rts/RtsUtils.h +++ b/ghc/rts/RtsUtils.h @@ -1,7 +1,6 @@ /* ----------------------------------------------------------------------------- - * $Id: RtsUtils.h,v 1.20 2004/02/26 16:36:21 simonmar Exp $ * - * (c) The GHC Team, 1998-1999 + * (c) The GHC Team, 1998-2004 * * General utility functions used in the RTS. * @@ -11,9 +10,9 @@ #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__);