提交 1d0085e4 编写于 作者: B Bruce Momjian

Dec alphaserver patch from Malcolm Beattie

上级 fe54c54d
......@@ -27,7 +27,7 @@
#if BYTE_ORDER == BIG_ENDIAN
#define ntoh_s(n) (u_short)(((u_char *)&n)[1] << 8 \
| ((u_char *)&n)[0])
#define ntoh_l(n) (u_long) (((u_char *)&n)[3] << 24 \
#define ntoh_l(n) (uint32) (((u_char *)&n)[3] << 24 \
| ((u_char *)&n)[2] << 16 \
| ((u_char *)&n)[1] << 8 \
| ((u_char *)&n)[0])
......@@ -65,10 +65,10 @@ int
pqPutLong(int integer, FILE *f)
{
int retval = 0;
u_long n;
uint32 n;
n = hton_l(integer);
if (fwrite(&n, sizeof(u_long), 1, f) != 1)
if (fwrite(&n, sizeof(uint32), 1, f) != 1)
retval = EOF;
return retval;
......@@ -93,9 +93,9 @@ int
pqGetLong(int *result, FILE *f)
{
int retval = 0;
u_long n;
uint32 n;
if (fread(&n, sizeof(u_long), 1, f) != 1)
if (fread(&n, sizeof(uint32), 1, f) != 1)
retval = EOF;
*result = ntoh_l(n);
......
......@@ -57,7 +57,7 @@
int
inet_aton(const char *cp, struct in_addr * addr)
{
register u_long val;
register uint32 val;
register int base,
n;
register char c;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册