aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-08-21 16:52:53 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-08-21 16:52:53 +0000
commitebb98bc68bb7264649f5b237c14ab8e62275dd61 (patch)
tree6071588028ac64b9e5f4df78a4d0aa5cd3225078 /include
parent36b246fe6f8d16b5f035f0fa9f1c497c120935c4 (diff)
Permit DEBUG_FD_LEAKS to be used with C++ source files.
(closes issue #15698) Reported by: slavon Patches: 20090817__issue15698.diff.txt uploaded by tilghman (license 14) Tested by: slavon, tilghman git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@213559 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include')
-rw-r--r--include/asterisk.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/asterisk.h b/include/asterisk.h
index 41e98f022..1f6c2c723 100644
--- a/include/asterisk.h
+++ b/include/asterisk.h
@@ -53,6 +53,9 @@
#define dup2(a,b) __ast_fdleak_dup2(a, b, __FILE__,__LINE__,__PRETTY_FUNCTION__)
#define dup(a) __ast_fdleak_dup(a, __FILE__,__LINE__,__PRETTY_FUNCTION__)
+#if defined(__cplusplus) || defined(c_plusplus)
+extern "C" {
+#endif
int __ast_fdleak_open(const char *file, int line, const char *func, const char *path, int flags, ...);
int __ast_fdleak_pipe(int *fds, const char *file, int line, const char *func);
int __ast_fdleak_socket(int domain, int type, int protocol, const char *file, int line, const char *func);
@@ -61,6 +64,9 @@ FILE *__ast_fdleak_fopen(const char *path, const char *mode, const char *file, i
int __ast_fdleak_fclose(FILE *ptr);
int __ast_fdleak_dup2(int oldfd, int newfd, const char *file, int line, const char *func);
int __ast_fdleak_dup(int oldfd, const char *file, int line, const char *func);
+#if defined(__cplusplus) || defined(c_plusplus)
+}
+#endif
#endif
/* provided in asterisk.c */