dos_compilers/Manx Aztec C86 v52a/LIB/STDLIB/LDLFREE.C
2024-07-02 08:25:54 -07:00

9 lines
137 B
C

/* Copyright (C) Manx Software Systems, Inc. 1985-1987.
All rights reserved. */
lfree(p)
huge void *p;
{
return _free(p);
}