Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/xlint/arch lint: remove trailing whitespace



details:   https://anonhg.NetBSD.org/src/rev/3b72e4e4155a
branches:  trunk
changeset: 949306:3b72e4e4155a
user:      rillig <rillig%NetBSD.org@localhost>
date:      Sat Jan 09 13:58:43 2021 +0000

description:
lint: remove trailing whitespace

diffstat:

 usr.bin/xlint/arch/aarch64/targparam.h   |  6 +++---
 usr.bin/xlint/arch/alpha/targparam.h     |  8 ++++----
 usr.bin/xlint/arch/arm/targparam.h       |  8 ++++----
 usr.bin/xlint/arch/coldfire/targparam.h  |  8 ++++----
 usr.bin/xlint/arch/hppa/targparam.h      |  8 ++++----
 usr.bin/xlint/arch/i386/targparam.h      |  8 ++++----
 usr.bin/xlint/arch/ia64/targparam.h      |  8 ++++----
 usr.bin/xlint/arch/m68000/targparam.h    |  8 ++++----
 usr.bin/xlint/arch/m68k/targparam.h      |  8 ++++----
 usr.bin/xlint/arch/mips/targparam.h      |  8 ++++----
 usr.bin/xlint/arch/mips64/targparam.h    |  8 ++++----
 usr.bin/xlint/arch/or1k/targparam.h      |  8 ++++----
 usr.bin/xlint/arch/powerpc/targparam.h   |  8 ++++----
 usr.bin/xlint/arch/powerpc64/targparam.h |  8 ++++----
 usr.bin/xlint/arch/riscv32/targparam.h   |  8 ++++----
 usr.bin/xlint/arch/riscv64/targparam.h   |  8 ++++----
 usr.bin/xlint/arch/sh3/targparam.h       |  8 ++++----
 usr.bin/xlint/arch/sparc/targparam.h     |  8 ++++----
 usr.bin/xlint/arch/sparc64/targparam.h   |  8 ++++----
 usr.bin/xlint/arch/vax/targparam.h       |  8 ++++----
 usr.bin/xlint/arch/x86_64/targparam.h    |  8 ++++----
 21 files changed, 83 insertions(+), 83 deletions(-)

diffs (truncated from 603 to 300 lines):

diff -r 537430aa2a96 -r 3b72e4e4155a usr.bin/xlint/arch/aarch64/targparam.h
--- a/usr.bin/xlint/arch/aarch64/targparam.h    Sat Jan 09 13:42:25 2021 +0000
+++ b/usr.bin/xlint/arch/aarch64/targparam.h    Sat Jan 09 13:58:43 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: targparam.h,v 1.1 2014/08/10 05:47:38 matt Exp $ */
+/* $NetBSD: targparam.h,v 1.2 2021/01/09 13:58:43 rillig Exp $ */
 
 /*-
  * Copyright (c) 2014 The NetBSD Foundation, Inc.
@@ -35,11 +35,11 @@
 #include "schar.h"
 #include "lp64.h"
 
-/*    
+/*
  * Should be set to 1 if the difference of two pointers is of type long
  * or the value of sizeof is of type unsigned long.  Note this MUST be
  * kept in sync with the compiler!
- */     
+ */
 
 #define        PTRDIFF_IS_LONG         1
 #define        SIZEOF_IS_ULONG         1
diff -r 537430aa2a96 -r 3b72e4e4155a usr.bin/xlint/arch/alpha/targparam.h
--- a/usr.bin/xlint/arch/alpha/targparam.h      Sat Jan 09 13:42:25 2021 +0000
+++ b/usr.bin/xlint/arch/alpha/targparam.h      Sat Jan 09 13:58:43 2021 +0000
@@ -1,9 +1,9 @@
-/*     $NetBSD: targparam.h,v 1.4 2012/03/27 19:24:01 christos Exp $   */
+/*     $NetBSD: targparam.h,v 1.5 2021/01/09 13:58:43 rillig Exp $     */
 
 /*
  * Copyright (c) 1994, 1995 Jochen Pohl
  * All Rights Reserved.
- * 
+ *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  * are met:
@@ -37,11 +37,11 @@
 #include "schar.h"
 #include "lp64.h"
 
-/*    
+/*
  * Should be set to 1 if the difference of two pointers is of type long
  * or the value of sizeof is of type unsigned long.  Note this MUST be
  * kept in sync with the compiler!
- */     
+ */
 
 #define        PTRDIFF_IS_LONG         1
 #define        SIZEOF_IS_ULONG         1
diff -r 537430aa2a96 -r 3b72e4e4155a usr.bin/xlint/arch/arm/targparam.h
--- a/usr.bin/xlint/arch/arm/targparam.h        Sat Jan 09 13:42:25 2021 +0000
+++ b/usr.bin/xlint/arch/arm/targparam.h        Sat Jan 09 13:58:43 2021 +0000
@@ -1,9 +1,9 @@
-/*     $NetBSD: targparam.h,v 1.5 2012/03/27 19:24:01 christos Exp $   */
+/*     $NetBSD: targparam.h,v 1.6 2021/01/09 13:58:43 rillig Exp $     */
 
 /*
  * Copyright (c) 1994, 1995 Jochen Pohl
  * All Rights Reserved.
- * 
+ *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  * are met:
@@ -37,11 +37,11 @@
 #include "uchar.h"
 #include "ilp32.h"
 
-/*    
+/*
  * Should be set to 1 if the difference of two pointers is of type long
  * or the value of sizeof is of type unsigned long.  Note this MUST be
  * kept in sync with the compiler!
- */     
+ */
 
 #define        PTRDIFF_IS_LONG         1
 #define        SIZEOF_IS_ULONG         1
diff -r 537430aa2a96 -r 3b72e4e4155a usr.bin/xlint/arch/coldfire/targparam.h
--- a/usr.bin/xlint/arch/coldfire/targparam.h   Sat Jan 09 13:42:25 2021 +0000
+++ b/usr.bin/xlint/arch/coldfire/targparam.h   Sat Jan 09 13:58:43 2021 +0000
@@ -1,9 +1,9 @@
-/*     $NetBSD: targparam.h,v 1.2 2014/03/18 18:20:46 riastradh Exp $  */
+/*     $NetBSD: targparam.h,v 1.3 2021/01/09 13:58:43 rillig Exp $     */
 
 /*
  * Copyright (c) 1994, 1995 Jochen Pohl
  * All Rights Reserved.
- * 
+ *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  * are met:
@@ -37,11 +37,11 @@
 #include "schar.h"
 #include "ilp32.h"
 
-/*    
+/*
  * Should be set to 1 if the difference of two pointers is of type long
  * or the value of sizeof is of type unsigned long.  Note this MUST be
  * kept in sync with the compiler!
- */     
+ */
 
 #define        PTRDIFF_IS_LONG         0
 #define        SIZEOF_IS_ULONG         0
diff -r 537430aa2a96 -r 3b72e4e4155a usr.bin/xlint/arch/hppa/targparam.h
--- a/usr.bin/xlint/arch/hppa/targparam.h       Sat Jan 09 13:42:25 2021 +0000
+++ b/usr.bin/xlint/arch/hppa/targparam.h       Sat Jan 09 13:58:43 2021 +0000
@@ -1,9 +1,9 @@
-/*     $NetBSD: targparam.h,v 1.5 2012/03/27 19:24:01 christos Exp $   */
+/*     $NetBSD: targparam.h,v 1.6 2021/01/09 13:58:43 rillig Exp $     */
 
 /*
  * Copyright (c) 1994, 1995 Jochen Pohl
  * All Rights Reserved.
- * 
+ *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  * are met:
@@ -37,11 +37,11 @@
 #include "schar.h"
 #include "ilp32.h"
 
-/*    
+/*
  * Should be set to 1 if the difference of two pointers is of type long
  * or the value of sizeof is of type unsigned long.  Note this MUST be
  * kept in sync with the compiler!
- */     
+ */
 
 #define        PTRDIFF_IS_LONG         1
 #define        SIZEOF_IS_ULONG         1
diff -r 537430aa2a96 -r 3b72e4e4155a usr.bin/xlint/arch/i386/targparam.h
--- a/usr.bin/xlint/arch/i386/targparam.h       Sat Jan 09 13:42:25 2021 +0000
+++ b/usr.bin/xlint/arch/i386/targparam.h       Sat Jan 09 13:58:43 2021 +0000
@@ -1,9 +1,9 @@
-/*     $NetBSD: targparam.h,v 1.4 2012/03/27 19:24:02 christos Exp $   */
+/*     $NetBSD: targparam.h,v 1.5 2021/01/09 13:58:43 rillig Exp $     */
 
 /*
  * Copyright (c) 1994, 1995 Jochen Pohl
  * All Rights Reserved.
- * 
+ *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  * are met:
@@ -37,11 +37,11 @@
 #include "schar.h"
 #include "ilp32.h"
 
-/*    
+/*
  * Should be set to 1 if the difference of two pointers is of type long
  * or the value of sizeof is of type unsigned long.  Note this MUST be
  * kept in sync with the compiler!
- */     
+ */
 
 #define        PTRDIFF_IS_LONG         0
 #define        SIZEOF_IS_ULONG         0
diff -r 537430aa2a96 -r 3b72e4e4155a usr.bin/xlint/arch/ia64/targparam.h
--- a/usr.bin/xlint/arch/ia64/targparam.h       Sat Jan 09 13:42:25 2021 +0000
+++ b/usr.bin/xlint/arch/ia64/targparam.h       Sat Jan 09 13:58:43 2021 +0000
@@ -1,9 +1,9 @@
-/*     $NetBSD: targparam.h,v 1.2 2012/03/27 19:24:02 christos Exp $   */
+/*     $NetBSD: targparam.h,v 1.3 2021/01/09 13:58:43 rillig Exp $     */
 
 /*
  * Copyright (c) 1994, 1995 Jochen Pohl
  * All Rights Reserved.
- * 
+ *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  * are met:
@@ -37,11 +37,11 @@
 #include "schar.h"
 #include "lp64.h"
 
-/*    
+/*
  * Should be set to 1 if the difference of two pointers is of type long
  * or the value of sizeof is of type unsigned long.  Note this MUST be
  * kept in sync with the compiler!
- */     
+ */
 
 #define        PTRDIFF_IS_LONG         1
 #define        SIZEOF_IS_ULONG         1
diff -r 537430aa2a96 -r 3b72e4e4155a usr.bin/xlint/arch/m68000/targparam.h
--- a/usr.bin/xlint/arch/m68000/targparam.h     Sat Jan 09 13:42:25 2021 +0000
+++ b/usr.bin/xlint/arch/m68000/targparam.h     Sat Jan 09 13:58:43 2021 +0000
@@ -1,9 +1,9 @@
-/*     $NetBSD: targparam.h,v 1.3 2012/03/27 19:24:02 christos Exp $   */
+/*     $NetBSD: targparam.h,v 1.4 2021/01/09 13:58:43 rillig Exp $     */
 
 /*
  * Copyright (c) 1994, 1995 Jochen Pohl
  * All Rights Reserved.
- * 
+ *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  * are met:
@@ -37,11 +37,11 @@
 #include "schar.h"
 #include "ilp32.h"
 
-/*    
+/*
  * Should be set to 1 if the difference of two pointers is of type long
  * or the value of sizeof is of type unsigned long.  Note this MUST be
  * kept in sync with the compiler!
- */     
+ */
 
 #define        PTRDIFF_IS_LONG         0
 #define        SIZEOF_IS_ULONG         0
diff -r 537430aa2a96 -r 3b72e4e4155a usr.bin/xlint/arch/m68k/targparam.h
--- a/usr.bin/xlint/arch/m68k/targparam.h       Sat Jan 09 13:42:25 2021 +0000
+++ b/usr.bin/xlint/arch/m68k/targparam.h       Sat Jan 09 13:58:43 2021 +0000
@@ -1,9 +1,9 @@
-/*     $NetBSD: targparam.h,v 1.4 2012/03/27 19:24:02 christos Exp $   */
+/*     $NetBSD: targparam.h,v 1.5 2021/01/09 13:58:43 rillig Exp $     */
 
 /*
  * Copyright (c) 1994, 1995 Jochen Pohl
  * All Rights Reserved.
- * 
+ *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  * are met:
@@ -37,11 +37,11 @@
 #include "schar.h"
 #include "ilp32.h"
 
-/*    
+/*
  * Should be set to 1 if the difference of two pointers is of type long
  * or the value of sizeof is of type unsigned long.  Note this MUST be
  * kept in sync with the compiler!
- */     
+ */
 
 #define        PTRDIFF_IS_LONG         0
 #define        SIZEOF_IS_ULONG         0
diff -r 537430aa2a96 -r 3b72e4e4155a usr.bin/xlint/arch/mips/targparam.h
--- a/usr.bin/xlint/arch/mips/targparam.h       Sat Jan 09 13:42:25 2021 +0000
+++ b/usr.bin/xlint/arch/mips/targparam.h       Sat Jan 09 13:58:43 2021 +0000
@@ -1,9 +1,9 @@
-/*     $NetBSD: targparam.h,v 1.5 2012/03/27 19:24:02 christos Exp $   */
+/*     $NetBSD: targparam.h,v 1.6 2021/01/09 13:58:44 rillig Exp $     */
 
 /*
  * Copyright (c) 1994, 1995 Jochen Pohl
  * All Rights Reserved.
- * 
+ *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  * are met:
@@ -37,11 +37,11 @@
 #include "schar.h"
 #include "ilp32.h"
 
-/*    
+/*
  * Should be set to 1 if the difference of two pointers is of type long
  * or the value of sizeof is of type unsigned long.  Note this MUST be
  * kept in sync with the compiler!
- */     
+ */
 
 #ifdef _LP64_X
 #define        PTRDIFF_IS_LONG         1
diff -r 537430aa2a96 -r 3b72e4e4155a usr.bin/xlint/arch/mips64/targparam.h
--- a/usr.bin/xlint/arch/mips64/targparam.h     Sat Jan 09 13:42:25 2021 +0000
+++ b/usr.bin/xlint/arch/mips64/targparam.h     Sat Jan 09 13:58:43 2021 +0000
@@ -1,9 +1,9 @@
-/*     $NetBSD: targparam.h,v 1.5 2014/01/24 00:17:33 christos Exp $   */
+/*     $NetBSD: targparam.h,v 1.6 2021/01/09 13:58:44 rillig Exp $     */
 
 /*
  * Copyright (c) 1994, 1995 Jochen Pohl
  * All Rights Reserved.
- * 
+ *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  * are met:
@@ -38,11 +38,11 @@



Home | Main Index | Thread Index | Old Index