diff options
-rw-r--r-- | libpiano/src/piano.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libpiano/src/piano.c b/libpiano/src/piano.c index f8269f8..2f9f8c6 100644 --- a/libpiano/src/piano.c +++ b/libpiano/src/piano.c @@ -747,11 +747,6 @@ PianoReturn_t PianoRequest (PianoHandle_t *ph, PianoRequest_t *req, return PIANO_RET_OK; } -#define byteswap32(x) ((((x) >> 24) & 0x000000ff) | \ - (((x) >> 8) & 0x0000ff00) | \ - (((x) << 8) & 0x00ff0000) | \ - (((x) << 24) & 0xff000000)) - /* parse xml response and update data structures/return new data structure * @param piano handle * @param initialized request (expects responseData to be a NUL-terminated |