HPUX: Remove all // X aCC comments

These were added to suppress warnings from the HPUX compiler.
This commit is contained in:
Andrew Johnson
2012-04-12 11:13:50 -05:00
parent 0ea56b82b8
commit 2a20d48ca4
85 changed files with 183 additions and 183 deletions
+2 -2
View File
@@ -131,7 +131,7 @@ int main ( int argc, char ** argv )
}
osiSockIoctl_t yes = true;
status = socket_ioctl ( sock, FIONBIO, &yes ); // X aCC 392
status = socket_ioctl ( sock, FIONBIO, &yes );
if ( status < 0 ) {
char sockErrBuf[64];
epicsSocketConvertErrnoToString (
@@ -166,7 +166,7 @@ int main ( int argc, char ** argv )
}
osiSockIoctl_t no = false;
status = socket_ioctl ( sock, FIONBIO, &no ); // X aCC 392
status = socket_ioctl ( sock, FIONBIO, &no );
if ( status < 0 ) {
char sockErrBuf[64];
epicsSocketConvertErrnoToString (