From fb7df618572c4815b36896720011a8e3eb818b50 Mon Sep 17 00:00:00 2001 From: kleink Date: Tue, 21 Jan 2003 17:45:04 +0000 Subject: [PATCH] Sprinkle some restrict. --- include/ucontext.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/include/ucontext.h b/include/ucontext.h index feabd9d385af..7bd680e0f910 100644 --- a/include/ucontext.h +++ b/include/ucontext.h @@ -1,4 +1,4 @@ -/* $NetBSD: ucontext.h,v 1.2 2003/01/18 10:32:11 thorpej Exp $ */ +/* $NetBSD: ucontext.h,v 1.3 2003/01/21 17:45:04 kleink Exp $ */ /*- * Copyright (c) 1999 The NetBSD Foundation, Inc. @@ -46,8 +46,7 @@ __BEGIN_DECLS int getcontext(ucontext_t *); int setcontext(const ucontext_t *); void makecontext(ucontext_t *, void (*)(), int, ...); -int swapcontext(ucontext_t *, const ucontext_t *); - +int swapcontext(ucontext_t * __restrict, const ucontext_t * __restrict); __END_DECLS #endif /* !_UCONTEXT_H_ */