diff options
author | rgrimes <rgrimes@FreeBSD.org> | 1995-05-30 05:05:38 +0000 |
---|---|---|
committer | rgrimes <rgrimes@FreeBSD.org> | 1995-05-30 05:05:38 +0000 |
commit | 2ad6f3dee6bc54535003f4ab26bbc587b7efa38c (patch) | |
tree | a3959baf797787918878bec6d58d6a0fb743ad0a /gnu/usr.bin/as/debug.c | |
parent | 4f960dd75f181e9fa2edc44324f15f0ab5c64b37 (diff) | |
download | FreeBSD-src-2ad6f3dee6bc54535003f4ab26bbc587b7efa38c.zip FreeBSD-src-2ad6f3dee6bc54535003f4ab26bbc587b7efa38c.tar.gz |
Remove trailing whitespace.
Diffstat (limited to 'gnu/usr.bin/as/debug.c')
-rw-r--r-- | gnu/usr.bin/as/debug.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/usr.bin/as/debug.c b/gnu/usr.bin/as/debug.c index 30717ff..d0a0c2d 100644 --- a/gnu/usr.bin/as/debug.c +++ b/gnu/usr.bin/as/debug.c @@ -1,19 +1,19 @@ /* This file is debug.c Copyright (C) 1987-1992 Free Software Foundation, Inc. - + This file is part of GAS, the GNU Assembler. - + GAS is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + GAS is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU General Public License along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ @@ -21,7 +21,7 @@ /* Routines for debug use only. */ #ifndef lint -static char rcsid[] = "$Id: debug.c,v 1.1 1993/10/02 20:57:24 pk Exp $"; +static char rcsid[] = "$Id: debug.c,v 1.1 1993/11/03 00:51:26 paul Exp $"; #endif #include "as.h" @@ -31,7 +31,7 @@ dmp_frags() { frchainS *chp; char *p; - + for ( chp=frchain_root; chp; chp = chp->frch_next ){ switch ( chp->frch_seg ){ case SEG_DATA: @@ -95,7 +95,7 @@ var_chars( fp, n ) int n; { unsigned char *p; - + for ( p=(unsigned char*)fp->fr_literal; n; n-- , p++ ){ printf("%02x ", *p ); } |