diff options
author | tholo <> | 1996-08-19 08:34:30 +0000 |
---|---|---|
committer | tholo <> | 1996-08-19 08:34:30 +0000 |
commit | e05d77aaf17452bebe333901f1acfad893fa05a7 (patch) | |
tree | 38a123983182ecb1d85d870dc92d9e902a66e4e4 /src/lib/libc/stdlib/malloc.c | |
parent | 057dc3cd255a3e12f9cb92d21ec3f71c65cfd475 (diff) | |
download | openbsd-e05d77aaf17452bebe333901f1acfad893fa05a7.tar.gz openbsd-e05d77aaf17452bebe333901f1acfad893fa05a7.tar.bz2 openbsd-e05d77aaf17452bebe333901f1acfad893fa05a7.zip |
Fix RCS ids
Make sure everything uses {SYS,}LIBC_SCCS properly
Diffstat (limited to '')
-rw-r--r-- | src/lib/libc/stdlib/malloc.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/libc/stdlib/malloc.c b/src/lib/libc/stdlib/malloc.c index 38938f96cf..66da09ff31 100644 --- a/src/lib/libc/stdlib/malloc.c +++ b/src/lib/libc/stdlib/malloc.c | |||
@@ -5,11 +5,12 @@ | |||
5 | * can do whatever you want with this stuff. If we meet some day, and you think | 5 | * can do whatever you want with this stuff. If we meet some day, and you think |
6 | * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp | 6 | * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp |
7 | * ---------------------------------------------------------------------------- | 7 | * ---------------------------------------------------------------------------- |
8 | * | ||
9 | * $Id: malloc.c,v 1.4 1996/08/02 18:08:09 tholo Exp $ | ||
10 | * | ||
11 | */ | 8 | */ |
12 | 9 | ||
10 | #if defined(LIBC_SCCS) && !defined(lint) | ||
11 | static char rcsid[] = "$OpenBSD: malloc.c,v 1.5 1996/08/19 08:33:37 tholo Exp $"; | ||
12 | #endif /* LIBC_SCCS and not lint */ | ||
13 | |||
13 | /* | 14 | /* |
14 | * Defining EXTRA_SANITY will enable some checks which are related | 15 | * Defining EXTRA_SANITY will enable some checks which are related |
15 | * to internal conditions and consistency in malloc.c | 16 | * to internal conditions and consistency in malloc.c |