Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/sys correctly protect mallocvar.h against multiple inclu...



details:   https://anonhg.NetBSD.org/src/rev/5f2b3d5792a3
branches:  trunk
changeset: 542584:5f2b3d5792a3
user:      christos <christos%NetBSD.org@localhost>
date:      Sun Feb 02 02:21:43 2003 +0000

description:
correctly protect mallocvar.h against multiple inclusion [hi thorpej]

diffstat:

 sys/sys/mallocvar.h |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (26 lines):

diff -r 4e35924f40ea -r 5f2b3d5792a3 sys/sys/mallocvar.h
--- a/sys/sys/mallocvar.h       Sun Feb 02 01:50:04 2003 +0000
+++ b/sys/sys/mallocvar.h       Sun Feb 02 02:21:43 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: mallocvar.h,v 1.1 2003/02/01 06:23:50 thorpej Exp $    */
+/*     $NetBSD: mallocvar.h,v 1.2 2003/02/02 02:21:43 christos Exp $   */
 
 /*
  * Copyright (c) 1987, 1993
@@ -35,8 +35,8 @@
  *     @(#)malloc.h    8.5 (Berkeley) 5/3/95
  */
 
-#ifndef _SYS_MALLOC_TYPE_H_
-#define        _SYS_MALLOC_TYPE_H_
+#ifndef _SYS_MALLOCVAR_H_
+#define        _SYS_MALLOCVAR_H_
 
 #include <sys/types.h>
 
@@ -89,4 +89,4 @@
 void   malloc_type_setlimit(struct malloc_type *, u_long);
 #endif /* _KERNEL */
 
-#endif /* _SYS_MALLOC_TYPE_H_ */
+#endif /* _SYS_MALLOCVAR_H_ */



Home | Main Index | Thread Index | Old Index