Module Name:    src
Committed By:   christos
Date:           Sun Mar 10 03:54:08 UTC 2019

Modified Files:
        src/include: malloc.h

Log Message:
add missing externs.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/include/malloc.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/include/malloc.h
diff -u src/include/malloc.h:1.5 src/include/malloc.h:1.6
--- src/include/malloc.h:1.5	Sat Mar  9 01:12:55 2019
+++ src/include/malloc.h	Sat Mar  9 22:54:08 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: malloc.h,v 1.5 2019/03/09 06:12:55 christos Exp $	*/
+/*	$NetBSD: malloc.h,v 1.6 2019/03/10 03:54:08 christos Exp $	*/
 
 /*-
  * Copyright (c) 2019 The NetBSD Foundation, Inc.
@@ -49,9 +49,9 @@ void malloc_stats_print(void (*)(void *,
 
 size_t malloc_usable_size(const void *);
 
-void (*malloc_message)(void *, const char *);
+extern void (*malloc_message)(void *, const char *);
 
-const char *malloc_conf;
+extern const char *malloc_conf;
 
 __END_DECLS
 

Reply via email to