summaryrefslogtreecommitdiff
path: root/src/md5.h
diff options
context:
space:
mode:
authorbjarni <bjarni@openttd.org>2007-02-05 21:16:56 +0000
committerbjarni <bjarni@openttd.org>2007-02-05 21:16:56 +0000
commit5ebab4089a86fa01ee6d1099db35849f32f63d64 (patch)
treef736d2ea9376a1705983b456c6a998c6e7bf901c /src/md5.h
parentbec2c602454b88f4c2146fbd88f0273b1f4d7d54 (diff)
downloadopenttd-5ebab4089a86fa01ee6d1099db35849f32f63d64.tar.xz
(svn r8605) -Codechange: [OSX] changed all objective C to objective C++
This will permanently solve the issue where compilation on OSX broke because C++ code was added to some header files -Note: (important if you develop mac specific code) taken from http://developer.apple.com/releasenotes/Cocoa/Objective-C++.html gdb lacks an integrated C++ with Objective-C parser. This means that gdb won't be able to evaluate expressions that contain both C++ and Objective-C constructs. gdb assumes that the language for ".mm" files is C++. you can change it to objective C by typing: (gdb) set language objc Mixing C++ and objective C has some limitation (see link for all of them)
Diffstat (limited to 'src/md5.h')
-rw-r--r--src/md5.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/md5.h b/src/md5.h
index 6e1f3044b..c3c8888d9 100644
--- a/src/md5.h
+++ b/src/md5.h
@@ -72,11 +72,6 @@ typedef struct md5_state_s {
md5_byte_t buf[64]; /* accumulate block */
} md5_state_t;
-#ifdef __cplusplus
-extern "C"
-{
-#endif
-
/* Initialize the algorithm. */
void md5_init(md5_state_t *pms);
@@ -86,8 +81,4 @@ void md5_append(md5_state_t *pms, const void *data, size_t nbytes);
/* Finish the message and return the digest. */
void md5_finish(md5_state_t *pms, md5_byte_t digest[16]);
-#ifdef __cplusplus
-} /* end extern "C" */
-#endif
-
#endif /* MD5_INCLUDED */