[R-gregmisc-users] SF.net SVN: r-gregmisc:[1865] trunk/SASxport/src/to_bigend.h
Brought to you by:
warnes
From: <wa...@us...> - 2014-07-21 16:47:17
|
Revision: 1865 http://sourceforge.net/p/r-gregmisc/code/1865 Author: warnes Date: 2014-07-21 16:47:15 +0000 (Mon, 21 Jul 2014) Log Message: ----------- Add missing comment terminators. Modified Paths: -------------- trunk/SASxport/src/to_bigend.h Modified: trunk/SASxport/src/to_bigend.h =================================================================== --- trunk/SASxport/src/to_bigend.h 2014-07-21 16:28:35 UTC (rev 1864) +++ trunk/SASxport/src/to_bigend.h 2014-07-21 16:47:15 UTC (rev 1865) @@ -20,14 +20,14 @@ #ifdef WORDS_BIGENDIAN - /* This is a big-endian system, so conversion is NOOP + /* This is a big-endian system, so conversion is NOOP */ # define TO_BIGEND_SHORT(a) ( a ) # define TO_BIGEND_INT(a) ( a ) # define TO_BIGEND_DOUBLE(a) ( a ) #else - /* We're on little-endian so use to_bigend to convert + /* We're on little-endian so use to_bigend to convert */ # define TO_BIGEND_SHORT(a) to_bigend( (unsigned char*) &a, sizeof(short) ) # define TO_BIGEND_INT(a) to_bigend( (unsigned char*) &a, sizeof(int) ) # define TO_BIGEND_DOUBLE(a) to_bigend( (unsigned char*) &a, sizeof(double) ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |