diff options
author | Ian Lance Taylor <ian@airs.com> | 2008-03-25 00:21:18 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 2008-03-25 00:21:18 +0000 |
commit | 72c15ffa848ee32ab57107a65280f98e85b28115 (patch) | |
tree | b990285a0cb0529d71fae1399339bf8301b2996b /include/md5.h | |
parent | d49bd40868d22bc46247b2f6d24cc000a81db0b6 (diff) | |
download | gdb-72c15ffa848ee32ab57107a65280f98e85b28115.zip gdb-72c15ffa848ee32ab57107a65280f98e85b28115.tar.gz gdb-72c15ffa848ee32ab57107a65280f98e85b28115.tar.bz2 |
Bring patch correction over from gcc repository.
Diffstat (limited to 'include/md5.h')
-rw-r--r-- | include/md5.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/md5.h b/include/md5.h index c8602ee..b3ff4e1 100644 --- a/include/md5.h +++ b/include/md5.h @@ -21,10 +21,6 @@ #ifndef _MD5_H #define _MD5_H 1 -#ifdef __cplusplus -extern "C" { -#endif - #include <stdio.h> #if defined HAVE_LIMITS_H || _LIBC @@ -76,6 +72,10 @@ typedef uintptr_t md5_uintptr; typedef unsigned long int md5_uintptr; #endif +#ifdef __cplusplus +extern "C" { +#endif + /* Structure to save state of computation between the single steps. */ struct md5_ctx { |