* mtrace.c: Don't typedef things like size_t, just #define them.

This commit is contained in:
Jim Kingdon 1991-05-03 06:04:13 +00:00
parent 2cb3be2c94
commit 7b54d319af
1 changed files with 7 additions and 0 deletions

View File

@ -22,6 +22,13 @@
#include <stdio.h>
#include "ansidecl.h"
/* size_t may be defined in the system-supplied stdio.h. */
/* So just kludge it. */
#define size_t unsigned int
#define ptrdiff_t int
#define __ONEFILE
#include <stdlib.h>
#include "gmalloc.h"