diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-03-01 07:20:35 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-03-01 07:20:35 +0000 |
commit | df019d9428ba9c0c2e234d5269c7869982a3b4bf (patch) | |
tree | c25c809e50137d46b95f01eb028746a1b1922790 /sysdeps/m68k/sys | |
parent | 963048adc594a58b83ff451ae319dad1f75c5c6c (diff) | |
download | glibc-df019d9428ba9c0c2e234d5269c7869982a3b4bf.tar glibc-df019d9428ba9c0c2e234d5269c7869982a3b4bf.tar.gz glibc-df019d9428ba9c0c2e234d5269c7869982a3b4bf.tar.bz2 glibc-df019d9428ba9c0c2e234d5269c7869982a3b4bf.zip |
(ucontext): Rename field uc_links to
uc_link which is the right name according to Unix98.
Diffstat (limited to 'sysdeps/m68k/sys')
-rw-r--r-- | sysdeps/m68k/sys/ucontext.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/m68k/sys/ucontext.h b/sysdeps/m68k/sys/ucontext.h index 4776e7d821..1acfee41df 100644 --- a/sysdeps/m68k/sys/ucontext.h +++ b/sysdeps/m68k/sys/ucontext.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997 Free Software Foundation, Inc. +/* Copyright (C) 1997, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -98,7 +98,7 @@ typedef struct typedef struct ucontext { unsigned long int uc_flags; - struct ucontext *uc_links; + struct ucontext *uc_link; __sigset_t uc_sigmask; stack_t uc_stack; mcontext_t uc_mcontext; |