indent has problems with comments that are on the right hand side of a line.
[openssl.git] / ssl / ssltest.c
index 77ef1419f1dcf54d9daf8b87b7c3bdbb3b9984aa..746bfba539cc02b16bc99f06e00cc2fc3245a64c 100644 (file)
  * OTHERWISE.
  */
 
-#define _BSD_SOURCE 1          /* Or gethostname won't be declared properly
-                                  on Linux and GNU platforms. */
+/* Or gethostname won't be declared properly on Linux and GNU platforms. */
+#define _BSD_SOURCE 1
 
 #include <assert.h>
 #include <errno.h>
 #include "e_os.h"
 
 #ifdef OPENSSL_SYS_VMS
-#define _XOPEN_SOURCE 500      /* Or isascii won't be declared properly on
-                                  VMS (at least with DECompHP C).  */
+/* Or isascii won't be declared properly on VMS (at least with DECompHP C).  */
+#define _XOPEN_SOURCE 500
 #endif
 
 #include <ctype.h>
 #endif
 #include <openssl/bn.h>
 
-#define _XOPEN_SOURCE_EXTENDED 1 /* Or gethostname won't be declared properly
-                                    on Compaq platforms (at least with DEC C).
-                                    Do not try to put it earlier, or IPv6 includes
-                                    get screwed...
-                                 */
+/*
+ * Or gethostname won't be declared properly
+ * on Compaq platforms (at least with DEC C).
+ * Do not try to put it earlier, or IPv6 includes
+ * get screwed...
+*/
+#define _XOPEN_SOURCE_EXTENDED 1 
 
 #ifdef OPENSSL_SYS_WINDOWS
 #include <winsock.h>