Merge branch 'master' of github.com:jedmccaleb/NewCoin

This commit is contained in:
JoelKatz
2012-07-20 14:08:47 -07:00
2 changed files with 9 additions and 0 deletions

View File

@@ -204,6 +204,13 @@ uint64_t be64toh(uint64_t value)
return(value);
}
uint32_t htobe32(uint32_t value)
{
return(htonl(value));
}
uint32_t be32toh(uint32_t value){ return(value); }
#endif
// vim:ts=4

View File

@@ -25,6 +25,8 @@
#ifdef WIN32
extern uint64_t htobe64(uint64_t value);
extern uint64_t be64toh(uint64_t value);
extern uint32_t htobe32(uint32_t value);
extern uint32_t be32toh(uint32_t value);
#endif
#define vt_f_black "\033[30m"