mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
Fix htons
svn path=/trunk/; revision=13964
This commit is contained in:
@@ -136,7 +136,7 @@ typedef struct {
|
||||
} TDIEntityInfo;
|
||||
|
||||
#ifndef htons
|
||||
#define htons(x) (((x) << 16) | (((x) >> 8) & 0xff))
|
||||
#define htons(x) (((x) << 8) | (((x) >> 8) & 0xff))
|
||||
#endif
|
||||
|
||||
/* Global variable */
|
||||
|
||||
Reference in New Issue
Block a user