v22.2b14/
v22.2b14/Win32/
v22.2b14/compat/
v22.2b14/testsuite/
v22.2b14/testsuite/clone/
v22.2b14/testsuite/command/
v22.2b14/testsuite/data/
v22.2b14/testsuite/etc/
v22.2b14/testsuite/include/
v22.2b14/testsuite/inherit/
v22.2b14/testsuite/inherit/master/
v22.2b14/testsuite/log/
v22.2b14/testsuite/single/
v22.2b14/testsuite/single/tests/compiler/
v22.2b14/testsuite/single/tests/efuns/
v22.2b14/testsuite/single/tests/operators/
v22.2b14/testsuite/u/
v22.2b14/tmp/
/* simple little program to link the right malloc c module to malloc.c */
/* needs to be a C program so that it can include config.h */

#define NO_SOCKETS
#define NO_OPCODES
#include "std.h"

#if !defined(THE_MALLOC) && !defined(THE_WRAPPER)
int main() {
    puts("Memory package and/or malloc wrapper incorrectly specified in options.h\n");
}
#else
int main() {
    unlink("malloc.c");
    unlink("mallocwrapper.c");
    return 0;
}
#endif