changeset 243:6f391799eb4a draft

wrap sha256.cpp in FOURWAYSSE2 #ifdef
author Satoshi Nakamoto <satoshin@gmx.com>
date Mon, 16 Aug 2010 20:52:36 +0000
parents 5bc497197b6e
children bf38622eb0b9
files sha256.cpp
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/sha256.cpp
+++ b/sha256.cpp
@@ -2,6 +2,8 @@
 // Distributed under the MIT/X11 software license, see the accompanying
 // file license.txt or http://www.opensource.org/licenses/mit-license.php.
 
+#ifdef FOURWAYSSE2
+
 #include <string.h>
 #include <assert.h>
 
@@ -417,3 +419,5 @@
     }
 
 }
+
+#endif // FOURWAYSSE2