Standardize the width of all comment boxes in C files

This commit is contained in:
Gregory Nutt
2015-10-02 17:43:18 -06:00
parent cb9e27c3b0
commit 5b51a9fcdd
230 changed files with 2054 additions and 2054 deletions
+20 -20
View File
@@ -1,4 +1,4 @@
/************************************************************************
/****************************************************************************
* libc/stdlib/lib_abort.c
*
* Copyright (C) 2007, 2009, 2011-2012 Gregory Nutt. All rights reserved.
@@ -31,46 +31,46 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
************************************************************************/
****************************************************************************/
/************************************************************************
/****************************************************************************
* Included Files
************************************************************************/
****************************************************************************/
#include <nuttx/config.h>
#include <stdlib.h>
#include <pthread.h>
/************************************************************************
/****************************************************************************
* Pre-processor Definitions
************************************************************************/
****************************************************************************/
/************************************************************************
/****************************************************************************
* Private Type Declarations
************************************************************************/
****************************************************************************/
/************************************************************************
/****************************************************************************
* Public Data
************************************************************************/
****************************************************************************/
/************************************************************************
/****************************************************************************
* Private Variables
************************************************************************/
****************************************************************************/
/************************************************************************
/****************************************************************************
* Private Function Prototypes
************************************************************************/
****************************************************************************/
/************************************************************************
/****************************************************************************
* Private Functions
************************************************************************/
****************************************************************************/
/************************************************************************
/****************************************************************************
* Public Functions
************************************************************************/
****************************************************************************/
/************************************************************************
/****************************************************************************
* Name: Abort
*
* Description:
@@ -93,7 +93,7 @@
* Returned Value:
* This function does not return,
*
************************************************************************/
****************************************************************************/
void abort(void)
{
+6 -6
View File
@@ -1,4 +1,4 @@
/************************************************************************
/****************************************************************************
* libc/stdlib/lib_abs.c
*
* Copyright (C) 2010-2011 Gregory Nutt. All rights reserved.
@@ -31,18 +31,18 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
************************************************************************/
****************************************************************************/
/************************************************************************
/****************************************************************************
* Included Files
************************************************************************/
****************************************************************************/
#include <nuttx/config.h>
#include <stdlib.h>
/************************************************************************
/****************************************************************************
* Public Functions
************************************************************************/
****************************************************************************/
int abs(int j)
{
+1 -1
View File
@@ -31,7 +31,7 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
************************************************************************/
****************************************************************************/
/****************************************************************************
* Included Files
+6 -6
View File
@@ -1,4 +1,4 @@
/************************************************************************
/****************************************************************************
* libc/stdlib//lib_abs.c
*
* Copyright (C) 2010-2011 Gregory Nutt. All rights reserved.
@@ -31,18 +31,18 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
************************************************************************/
****************************************************************************/
/************************************************************************
/****************************************************************************
* Included Files
************************************************************************/
****************************************************************************/
#include <nuttx/config.h>
#include <inttypes.h>
/************************************************************************
/****************************************************************************
* Public Functions
************************************************************************/
****************************************************************************/
intmax_t imaxabs(intmax_t j)
{
+6 -6
View File
@@ -1,4 +1,4 @@
/************************************************************************
/****************************************************************************
* libc/stdlib/lib_itoa.c
*
* Copyright (C) 2013 Brooks Automation, Inc. All rights reserved.
@@ -36,18 +36,18 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
************************************************************************/
****************************************************************************/
/************************************************************************
/****************************************************************************
* Included Files
************************************************************************/
****************************************************************************/
#include <nuttx/config.h>
#include <stdlib.h>
/************************************************************************
/****************************************************************************
* Public Functions
************************************************************************/
****************************************************************************/
char *itoa(int val, char *str, int base)
{
+6 -6
View File
@@ -1,4 +1,4 @@
/************************************************************************
/****************************************************************************
* libc/stdlib/lib_labs.c
*
* Copyright (C) 2010-2011 Gregory Nutt. All rights reserved.
@@ -31,18 +31,18 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
************************************************************************/
****************************************************************************/
/************************************************************************
/****************************************************************************
* Included Files
************************************************************************/
****************************************************************************/
#include <nuttx/config.h>
#include <stdlib.h>
/************************************************************************
/****************************************************************************
* Public Functions
************************************************************************/
****************************************************************************/
long int labs(long int j)
{
+1 -1
View File
@@ -36,7 +36,7 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
************************************************************************/
****************************************************************************/
/****************************************************************************
* Included Files
+6 -6
View File
@@ -1,4 +1,4 @@
/************************************************************************
/****************************************************************************
* libc/stdlib/lib_llabs.c
*
* Copyright (C) 2010-2011 Gregory Nutt. All rights reserved.
@@ -31,19 +31,19 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
************************************************************************/
****************************************************************************/
/************************************************************************
/****************************************************************************
* Included Files
************************************************************************/
****************************************************************************/
#include <nuttx/config.h>
#include <nuttx/compiler.h>
#include <stdlib.h>
/************************************************************************
/****************************************************************************
* Public Functions
************************************************************************/
****************************************************************************/
#ifdef CONFIG_HAVE_LONG_LONG
long long int llabs(long long int j)
+1 -1
View File
@@ -36,7 +36,7 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
************************************************************************/
****************************************************************************/
/****************************************************************************
* Included Files