Module Name: src
Committed By: joerg
Date: Fri Jul 14 19:24:12 UTC 2017
Modified Files:
src/lib/libc/include: atexit.h
Log Message:
Avoid common declaration.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/lib/libc/include/atexit.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libc/include/atexit.h
diff -u src/lib/libc/include/atexit.h:1.1 src/lib/libc/include/atexit.h:1.2
--- src/lib/libc/include/atexit.h:1.1 Tue Jul 11 15:21:35 2017
+++ src/lib/libc/include/atexit.h Fri Jul 14 19:24:12 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: atexit.h,v 1.1 2017/07/11 15:21:35 joerg Exp $ */
+/* $NetBSD: atexit.h,v 1.2 2017/07/14 19:24:12 joerg Exp $ */
/*-
* Copyright (c) 2003 The NetBSD Foundation, Inc.
@@ -37,5 +37,5 @@ void __cxa_thread_run_atexit(void);
int __cxa_thread_atexit(void (*)(void *), void *, void *);
#ifdef _LIBC
-__dso_hidden bool __cxa_thread_atexit_used;
+extern __dso_hidden bool __cxa_thread_atexit_used;
#endif