Module Name: src Committed By: matt Date: Wed Jan 29 00:34:19 UTC 2014
Modified Files: src/sys/arch/arm/include: limits.h Log Message: replace spaces in SHRT_MIN definition with tabs To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 src/sys/arch/arm/include/limits.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/arch/arm/include/limits.h diff -u src/sys/arch/arm/include/limits.h:1.14 src/sys/arch/arm/include/limits.h:1.15 --- src/sys/arch/arm/include/limits.h:1.14 Wed Jan 29 00:32:04 2014 +++ src/sys/arch/arm/include/limits.h Wed Jan 29 00:34:19 2014 @@ -1,4 +1,4 @@ -/* $NetBSD: limits.h,v 1.14 2014/01/29 00:32:04 matt Exp $ */ +/* $NetBSD: limits.h,v 1.15 2014/01/29 00:34:19 matt Exp $ */ /* * Copyright (c) 1988 The Regents of the University of California. @@ -44,7 +44,7 @@ #define USHRT_MAX 0xffff /* max value for an unsigned short */ #define SHRT_MAX 0x7fff /* max value for a short */ -#define SHRT_MIN (-0x7fff-1) /* min value for a short */ +#define SHRT_MIN (-0x7fff-1) /* min value for a short */ #define UINT_MAX 0xffffffffU /* max value for an unsigned int */ #define INT_MAX 0x7fffffff /* max value for an int */