Update src/cdefs-compat.h

Co-Authored-By: Jameson Nash <vtjnash@gmail.com>
This commit is contained in:
gufe44 2019-10-25 23:45:13 +02:00 committed by GitHub
parent 2080b23690
commit ea065f90cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@
#ifdef __weak_reference
#ifdef __NetBSD__
#define __weak_reference_compat(sym,alias) __weak_reference(sym)
#define __weak_reference_compat(sym,alias) __weak_alias(alias,sym)
#else
#define __weak_reference_compat(sym,alias) __weak_reference(sym,alias)
#endif