Files
ldc/tk.c
Alexey Prokhin caad8cde58 Squashed 'dmd2/' content from commit 10017d5
git-subtree-dir: dmd2
git-subtree-split: 10017d50eaaff4ecdc37a0153b6c37ea0b004c81
2012-04-05 11:10:48 +04:00

31 lines
672 B
C

// Copyright (c) 1999-2002 by Digital Mars
// All Rights Reserved
// written by Walter Bright
// http://www.digitalmars.com
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
static char __file__[] = __FILE__; /* for tassert.h */
#include "tassert.h"
#include "mem.h"
#include "filespec.c"
#if 0
#define malloc ph_malloc
#define calloc(x,y) ph_calloc((x) * (y))
#define realloc ph_realloc
#define free ph_free
#endif
#if !MEM_DEBUG
#define MEM_NOMEMCOUNT 1
#define MEM_NONEW 1
#endif
#include "mem.c"
#include "list.c"
#include "vec.c"