-traditional-cpp and spaces after commas is not a happy combination.

This commit is contained in:
simonb 2003-11-13 06:29:39 +00:00
parent 9e7bfda285
commit bc4e986724
5 changed files with 15 additions and 15 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: __clone.S,v 1.1 2001/08/08 09:19:40 matthias Exp $ */
/* $NetBSD: __clone.S,v 1.2 2003/11/13 06:29:39 simonb Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@ -41,7 +41,7 @@
#include "SYS.h"
#ifdef WEAK_ALIAS
WEAK_ALIAS(clone, __clone)
WEAK_ALIAS(clone,__clone)
#endif
/*

View File

@ -1,4 +1,4 @@
/* $NetBSD: brk.S,v 1.8 2003/11/11 19:18:14 simonb Exp $ */
/* $NetBSD: brk.S,v 1.9 2003/11/13 06:29:39 simonb Exp $ */
/*
* Copyright (c) 1992 Helsinki University of Technology
@ -24,11 +24,11 @@
#include "SYS.h"
#if defined(LIBC_SCCS)
RCSID("$NetBSD: brk.S,v 1.8 2003/11/11 19:18:14 simonb Exp $")
RCSID("$NetBSD: brk.S,v 1.9 2003/11/13 06:29:39 simonb Exp $")
#endif
#ifdef WEAK_ALIAS
WEAK_ALIAS(brk, _brk)
WEAK_ALIAS(brk,_brk)
#endif
DATA_D(__minbrk, _C_LABEL(end))

View File

@ -1,4 +1,4 @@
/* $NetBSD: getcontext.S,v 1.1 2003/01/21 21:03:25 kleink Exp $ */
/* $NetBSD: getcontext.S,v 1.2 2003/11/13 06:29:39 simonb Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@ -39,14 +39,14 @@
#include "SYS.h"
#if defined(SYSLIBC_SCCS) && !defined(lint)
RCSID("$NetBSD: getcontext.S,v 1.1 2003/01/21 21:03:25 kleink Exp $")
RCSID("$NetBSD: getcontext.S,v 1.2 2003/11/13 06:29:39 simonb Exp $")
#endif /* SYSLIBC_SCCS && !lint */
#ifdef WEAK_ALIAS
WEAK_ALIAS(getcontext, _getcontext)
WEAK_ALIAS(getcontext,_getcontext)
#endif
_SYSCALL(_getcontext, getcontext)
_SYSCALL(_getcontext,getcontext)
movd S_ARG0,r2
addr 4(sp),(36 + 8 * 4)(r2) /* Adjust saved sp ... */
movd 0(sp),(36 + 11 * 4)(r2) /* ... and pc. */

View File

@ -1,4 +1,4 @@
/* $NetBSD: pipe.S,v 1.6 2003/11/11 19:18:14 simonb Exp $ */
/* $NetBSD: pipe.S,v 1.7 2003/11/13 06:29:39 simonb Exp $ */
/*
* Copyright (c) 1992 Helsinki University of Technology
@ -24,11 +24,11 @@
#include "SYS.h"
#if defined(LIBC_SCCS)
RCSID("$NetBSD: pipe.S,v 1.6 2003/11/11 19:18:14 simonb Exp $")
RCSID("$NetBSD: pipe.S,v 1.7 2003/11/13 06:29:39 simonb Exp $")
#endif
#ifdef WEAK_ALIAS
WEAK_ALIAS(pipe, _pipe)
WEAK_ALIAS(pipe,_pipe)
#endif
_SYSCALL(_pipe,pipe)

View File

@ -1,4 +1,4 @@
/* $NetBSD: sbrk.S,v 1.8 2003/11/11 19:18:14 simonb Exp $ */
/* $NetBSD: sbrk.S,v 1.9 2003/11/13 06:29:39 simonb Exp $ */
/*
* Copyright (c) 1992 Helsinki University of Technology
@ -24,11 +24,11 @@
#include "SYS.h"
#if defined(LIBC_SCCS)
RCSID("$NetBSD: sbrk.S,v 1.8 2003/11/11 19:18:14 simonb Exp $")
RCSID("$NetBSD: sbrk.S,v 1.9 2003/11/13 06:29:39 simonb Exp $")
#endif
#ifdef WEAK_ALIAS
WEAK_ALIAS(sbrk, _sbrk)
WEAK_ALIAS(sbrk,_sbrk)
#endif
ASDATA_D(curbrk, _C_LABEL(end))