diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2003-07-15 10:09:38 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2003-07-15 10:09:38 +0000 |
commit | 0f47043e3a95ba751bafaa26629d50e4ff314e6d (patch) | |
tree | bad544555ceb0bc7dddb388ac88bb821ba6aa675 /regress/lib/libc | |
parent | 306f8b944829bf39af5022fcb9fa652083969f05 (diff) |
move malloc0test.c to new subdir.
ok tdeval@ millert@
Diffstat (limited to 'regress/lib/libc')
-rw-r--r-- | regress/lib/libc/malloc/Makefile | 8 | ||||
-rw-r--r-- | regress/lib/libc/malloc/malloc0test/Makefile | 5 | ||||
-rw-r--r-- | regress/lib/libc/malloc/malloc0test/malloc0test.c (renamed from regress/lib/libc/malloc/malloc0test.c) | 2 |
3 files changed, 11 insertions, 4 deletions
diff --git a/regress/lib/libc/malloc/Makefile b/regress/lib/libc/malloc/Makefile index 0e8eee54780..bb6dfc26a42 100644 --- a/regress/lib/libc/malloc/Makefile +++ b/regress/lib/libc/malloc/Makefile @@ -1,5 +1,7 @@ -# $OpenBSD: Makefile,v 1.3 2002/02/18 11:29:50 art Exp $ +# $OpenBSD: Makefile,v 1.4 2003/07/15 10:09:37 otto Exp $ -PROG= malloc0test +SUBDIR+= malloc0test malloc_errno -.include <bsd.regress.mk> +install: + +.include <bsd.subdir.mk> diff --git a/regress/lib/libc/malloc/malloc0test/Makefile b/regress/lib/libc/malloc/malloc0test/Makefile new file mode 100644 index 00000000000..8ed8163a790 --- /dev/null +++ b/regress/lib/libc/malloc/malloc0test/Makefile @@ -0,0 +1,5 @@ +# $OpenBSD: Makefile,v 1.1 2003/07/15 10:09:37 otto Exp $ + +PROG= malloc0test + +.include <bsd.regress.mk> diff --git a/regress/lib/libc/malloc/malloc0test.c b/regress/lib/libc/malloc/malloc0test/malloc0test.c index 71e077e1c30..39c3fd2e64f 100644 --- a/regress/lib/libc/malloc/malloc0test.c +++ b/regress/lib/libc/malloc/malloc0test/malloc0test.c @@ -1,4 +1,4 @@ -/* $OpenBSD: malloc0test.c,v 1.5 2002/02/18 11:29:50 art Exp $ */ +/* $OpenBSD: malloc0test.c,v 1.1 2003/07/15 10:09:37 otto Exp $ */ /* * Public domain. 2001, Theo de Raadt */ |