diff options
author | Chris Lattner <sabre@nondot.org> | 2004-12-16 04:56:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-12-16 04:56:34 +0000 |
commit | 2fb645ac4780546841e275a918ca9dc3b172f58d (patch) | |
tree | 2bef849b245bc86efa56341de2fdc0aa04b97289 | |
parent | b8b836d019f3673d03fcd90c5129f828afda654e (diff) |
Portability fix, thanks to Markus F.X.J. Oberhumer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18977 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | utils/Burg/zalloc.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/utils/Burg/zalloc.c b/utils/Burg/zalloc.c index 9128e4280f..526c52d85d 100644 --- a/utils/Burg/zalloc.c +++ b/utils/Burg/zalloc.c @@ -2,12 +2,9 @@ char rcsid_zalloc[] = "$Id$"; #include <stdio.h> #include <string.h> +#include <stdlib.h> #include "b.h" -extern void exit ARGS((int)); -extern void free ARGS((void *)); -extern void *malloc ARGS((unsigned)); - int fatal(const char *name, int line) { |