|
Revision 428, 0.7 kB
(checked in by walter, 2 years ago)
|
remove tabs, any trailing spaces
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
// Copyright (c) 1999-2002 by Digital Mars |
|---|
| 2 |
// All Rights Reserved |
|---|
| 3 |
// written by Walter Bright |
|---|
| 4 |
// http://www.digitalmars.com |
|---|
| 5 |
|
|---|
| 6 |
#include <stdio.h> |
|---|
| 7 |
#include <stdlib.h> |
|---|
| 8 |
#include <string.h> |
|---|
| 9 |
|
|---|
| 10 |
static char __file__[] = __FILE__; /* for tassert.h */ |
|---|
| 11 |
#include "tassert.h" |
|---|
| 12 |
|
|---|
| 13 |
#include "mem.h" |
|---|
| 14 |
#include "filespec.c" |
|---|
| 15 |
|
|---|
| 16 |
#if 0 |
|---|
| 17 |
#define malloc ph_malloc |
|---|
| 18 |
#define calloc(x,y) ph_calloc((x) * (y)) |
|---|
| 19 |
#define realloc ph_realloc |
|---|
| 20 |
#define free ph_free |
|---|
| 21 |
#endif |
|---|
| 22 |
|
|---|
| 23 |
#if !MEM_DEBUG |
|---|
| 24 |
#define MEM_NOMEMCOUNT 1 |
|---|
| 25 |
#define MEM_NONEW 1 |
|---|
| 26 |
#endif |
|---|
| 27 |
#include "mem.c" |
|---|
| 28 |
#include "list.c" |
|---|
| 29 |
#include "vec.c" |
|---|