diff options
author | Michael Meissner <gnu@the-meissners.org> | 1995-11-13 16:07:30 +0000 |
---|---|---|
committer | Michael Meissner <gnu@the-meissners.org> | 1995-11-13 16:07:30 +0000 |
commit | 1dc7c0ed844311c321e68f23209f4d51ef475fdc (patch) | |
tree | 8e1765a07044abb451a489c56658861119b2616d /sim/ppc/main.c | |
parent | 125d37c4719b9df1d7b60614bd310ac1c7828f8d (diff) | |
download | binutils-gdb-1dc7c0ed844311c321e68f23209f4d51ef475fdc.tar.gz |
checkpoint
Diffstat (limited to 'sim/ppc/main.c')
-rw-r--r-- | sim/ppc/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/ppc/main.c b/sim/ppc/main.c index 0b3ad07267a..8df92767466 100644 --- a/sim/ppc/main.c +++ b/sim/ppc/main.c @@ -73,7 +73,7 @@ zalloc(long size) void *memory = malloc(size); if (memory == NULL) error("zmalloc failed\n"); - bzero(memory, size); + memset(memory, 0, size); return memory; } |