Browse Source

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

gdb-4_18-branch
Jim Kingdon 36 years ago
parent
commit
7b54d319af
  1. 7
      gdb/mtrace.c

7
gdb/mtrace.c

@ -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"

Loading…
Cancel
Save