MySQL Forums
Forum List  »  NDB clusters

Re: 4.1.12 (Sun Solaris 10 ) and 4.1.13 (Suse Linux) in one Cluster
Posted by: Stewart Smith
Date: July 28, 2005 06:03AM

something like the following C program:

#include <stdio.h>

int main()
{
long l = 0x11223344;
unsigned char* c = (unsigned char*) &l;
printf("This machine is a %s endian.\n", ((*c != 0x44)? "big":"little"));
return 0;
}

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: 4.1.12 (Sun Solaris 10 ) and 4.1.13 (Suse Linux) in one Cluster
1651
July 28, 2005 06:03AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.