diff options
author | hrs <hrs@FreeBSD.org> | 2011-06-11 06:56:26 +0000 |
---|---|---|
committer | hrs <hrs@FreeBSD.org> | 2011-06-11 06:56:26 +0000 |
commit | b2a6f5600367e61c439c79db2317d4619960e2ce (patch) | |
tree | b813a06aa0583761055c631f2a5c54ae5943b77b /cddl/compat/opensolaris/include/assert.h | |
parent | d4f481b2900357dc1f0d48b9f4e052a920909b02 (diff) | |
parent | c8e3d11e24e29c032a1ed9d46c65d8f10e9f0030 (diff) | |
download | FreeBSD-src-b2a6f5600367e61c439c79db2317d4619960e2ce.zip FreeBSD-src-b2a6f5600367e61c439c79db2317d4619960e2ce.tar.gz |
Merge from HEAD@222975.
Diffstat (limited to 'cddl/compat/opensolaris/include/assert.h')
-rw-r--r-- | cddl/compat/opensolaris/include/assert.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/cddl/compat/opensolaris/include/assert.h b/cddl/compat/opensolaris/include/assert.h index 353f0c9..0887093 100644 --- a/cddl/compat/opensolaris/include/assert.h +++ b/cddl/compat/opensolaris/include/assert.h @@ -43,6 +43,10 @@ #include <stdio.h> #include <stdlib.h> +#ifdef __cplusplus +extern "C" { +#endif + static __inline void __assert(const char *expr, const char *file, int line) { @@ -52,4 +56,9 @@ __assert(const char *expr, const char *file, int line) abort(); /* NOTREACHED */ } + +#ifdef __cplusplus +} +#endif + #endif /* !_ASSERT_H_ */ |