aboutsummaryrefslogtreecommitdiff
path: root/crypto/openssl/apps/include/platform.h
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/openssl/apps/include/platform.h')
-rw-r--r--crypto/openssl/apps/include/platform.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/crypto/openssl/apps/include/platform.h b/crypto/openssl/apps/include/platform.h
index 62fc99c5fd7a..ec12a41af7c7 100644
--- a/crypto/openssl/apps/include/platform.h
+++ b/crypto/openssl/apps/include/platform.h
@@ -8,25 +8,25 @@
*/
#ifndef OSSL_APPS_PLATFORM_H
-# define OSSL_APPS_PLATFORM_H
+#define OSSL_APPS_PLATFORM_H
-# include <openssl/e_os2.h>
+#include <openssl/e_os2.h>
-# if defined(OPENSSL_SYS_VMS) && defined(__DECC)
+#if defined(OPENSSL_SYS_VMS) && defined(__DECC)
/*
* VMS C only for now, implemented in vms_decc_init.c
* If other C compilers forget to terminate argv with NULL, this function
* can be reused.
*/
char **copy_argv(int *argc, char *argv[]);
-# endif
+#endif
-# ifdef _WIN32
+#ifdef _WIN32
/*
* Win32-specific argv initialization that splits OS-supplied UNICODE
* command line string to array of UTF8-encoded strings.
*/
void win32_utf8argv(int *argc, char **argv[]);
-# endif
+#endif
#endif