1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-09 08:58:35 +03:00

talloc: make header C++ safe

Autobuild-User: Simo Sorce <idra@samba.org>
Autobuild-Date: Wed Oct 20 18:15:09 UTC 2010 on sn-devel-104
This commit is contained in:
Simo Sorce 2010-10-20 13:09:57 -04:00
parent c8000c94a5
commit feb6034581

View File

@ -29,6 +29,10 @@
#include <stdio.h>
#include <stdarg.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* @defgroup talloc The talloc API
*
@ -1701,4 +1705,8 @@ void talloc_set_log_stderr(void);
#define TALLOC_MAX_DEPTH 10000
#endif
#ifdef __cplusplus
} /* end of extern "C" */
#endif
#endif