aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>2008-03-24 23:43:26 +0000
committerIan Lance Taylor <ian@airs.com>2008-03-24 23:43:26 +0000
commit66ce843946526047a4f7c6c57c80e4d27034c479 (patch)
tree76336b1b7cfaf66233a98474bd984e7feda5e095 /include
parent11f8f169168b0b15baece9a46d97ca04c71b4a33 (diff)
downloadgdb-66ce843946526047a4f7c6c57c80e4d27034c479.zip
gdb-66ce843946526047a4f7c6c57c80e4d27034c479.tar.gz
gdb-66ce843946526047a4f7c6c57c80e4d27034c479.tar.bz2
* md5.h: Add extern "C" when compiled with C++.
Diffstat (limited to 'include')
-rw-r--r--include/ChangeLog4
-rw-r--r--include/md5.h8
2 files changed, 12 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index 7e1bf20..8b5630d 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,7 @@
+2008-03-24 Ian Lance Taylor <iant@google.com>
+
+ * md5.h: Add extern "C" when compiled with C++.
+
2008-03-21 Ian Lance Taylor <iant@google.com>
* filenames.h: Add extern "C" when compiled with C++.
diff --git a/include/md5.h b/include/md5.h
index e8eedb9..c8602ee 100644
--- a/include/md5.h
+++ b/include/md5.h
@@ -21,6 +21,10 @@
#ifndef _MD5_H
#define _MD5_H 1
+#ifdef __cplusplus
+extern "C" {
+#endif
+
#include <stdio.h>
#if defined HAVE_LIMITS_H || _LIBC
@@ -138,4 +142,8 @@ extern int md5_stream (FILE *stream, void *resblock);
digest. */
extern void *md5_buffer (const char *buffer, size_t len, void *resblock);
+#ifdef __cplusplus
+}
+#endif
+
#endif