beautification

This commit is contained in:
Andreas Steffen
2007-08-29 05:42:22 +00:00
parent 55434a1ba5
commit d64b48a80b
2 changed files with 20 additions and 2 deletions
+10 -1
View File
@@ -1,3 +1,10 @@
/**
* @file fips_canister_end.c
*
* @brief Marks the end of TEXT and RODATA.
*
*/
/* ====================================================================
* Copyright (c) 2005 The OpenSSL Project. Rights for redistribution
* and usage in source and binary forms are granted according to the
@@ -37,7 +44,9 @@ const unsigned int FIPS_rodata_end[]=
* pitfalls in -dynamic linker behaviour...
*/
static void *instruction_pointer(void)
{ void *ret=NULL;
{
void *ret = NULL;
/* These are ABI-neutral CPU-specific snippets. ABI-neutrality means
* that they are designed to work under any OS running on particular
* CPU, which is why you don't find any #ifdef THIS_OR_THAT_OS in
+10 -1
View File
@@ -1,3 +1,10 @@
/**
* @file fips_canister_start.c
*
* @brief Marks the start of TEXT and RODATA.
*
*/
/* ====================================================================
* Copyright (c) 2005 The OpenSSL Project. Rights for redistribution
* and usage in source and binary forms are granted according to the
@@ -38,7 +45,9 @@ const unsigned int FIPS_rodata_start[]=
* pitfalls in -dynamic linker behaviour...
*/
static void *instruction_pointer(void)
{ void *ret=NULL;
{
void *ret = NULL;
/* These are ABI-neutral CPU-specific snippets. ABI-neutrality means
* that they are designed to work under any OS running on particular
* CPU, which is why you don't find any #ifdef THIS_OR_THAT_OS in