diff options
author | Anthony J. Bentley <bentley@cvs.openbsd.org> | 2014-11-19 03:42:41 +0000 |
---|---|---|
committer | Anthony J. Bentley <bentley@cvs.openbsd.org> | 2014-11-19 03:42:41 +0000 |
commit | 10816ee6384bbbaeb0223fd2a4110bc6497e90d5 (patch) | |
tree | 45ee6396bb51ab5616e9a7e11e07f1b2825c94fd /usr.bin/vi/cl | |
parent | e9ce9c47b231b4e8a0c36c51436e60f571c26c99 (diff) |
Remove ifdef checks for LIBRARY.
It is undocumented and triggers the same conditional inclusions as
PURIFY does.
From Martin Natano.
Diffstat (limited to 'usr.bin/vi/cl')
-rw-r--r-- | usr.bin/vi/cl/cl_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/vi/cl/cl_main.c b/usr.bin/vi/cl/cl_main.c index ec0122a7bd4..e80ea19b9a8 100644 --- a/usr.bin/vi/cl/cl_main.c +++ b/usr.bin/vi/cl/cl_main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cl_main.c,v 1.24 2014/11/14 20:27:03 tedu Exp $ */ +/* $OpenBSD: cl_main.c,v 1.25 2014/11/19 03:42:40 bentley Exp $ */ /*- * Copyright (c) 1993, 1994 @@ -128,7 +128,7 @@ main(int argc, char *argv[]) } /* Free the global and CL private areas. */ -#if defined(DEBUG) || defined(PURIFY) || defined(LIBRARY) +#if defined(DEBUG) || defined(PURIFY) free(clp); free(gp); #endif |