aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2000-02-01 11:20:58 +0000
committerAndreas Jaeger <aj@suse.de>2000-02-01 11:20:58 +0000
commitaaac6772cd3bb1ef9bf0eb24d0eeeabdb330c226 (patch)
tree0aea35870bdb2c89eb351df5ec38b4f415331e9a
parent66ade017c83684bcca2867b130721a2d692dffff (diff)
downloadglibc-aaac6772cd3bb1ef9bf0eb24d0eeeabdb330c226.tar
glibc-aaac6772cd3bb1ef9bf0eb24d0eeeabdb330c226.tar.gz
glibc-aaac6772cd3bb1ef9bf0eb24d0eeeabdb330c226.tar.bz2
glibc-aaac6772cd3bb1ef9bf0eb24d0eeeabdb330c226.zip
Update.
* sysdeps/unix/sysv/linux/mips/sys/ucontext.h: Add missing ints.
-rw-r--r--ChangeLog2
-rw-r--r--sysdeps/unix/sysv/linux/mips/sys/ucontext.h6
2 files changed, 5 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 7e9c881497..4da7ac2afc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2000-02-01 Andreas Jaeger <aj@suse.de>
+ * sysdeps/unix/sysv/linux/mips/sys/ucontext.h: Add missing ints.
+
* sysdeps/mips/elf/start.S: Rewritten for __libc_start_main.
2000-01-30 Ulrich Drepper <drepper@redhat.com>
diff --git a/sysdeps/unix/sysv/linux/mips/sys/ucontext.h b/sysdeps/unix/sysv/linux/mips/sys/ucontext.h
index dd534eae20..e9a4fbc366 100644
--- a/sysdeps/unix/sysv/linux/mips/sys/ucontext.h
+++ b/sysdeps/unix/sysv/linux/mips/sys/ucontext.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 1997, 1998 Free Software Foundation, Inc.
+/* Copyright (C) 1997, 1998, 2000 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
@@ -30,7 +30,7 @@
/* Type for general register. */
-typedef unsigned long greg_t;
+typedef unsigned long int greg_t;
/* Number of general registers. */
#define NGREG 37
@@ -67,7 +67,7 @@ typedef struct
/* Userlevel context. */
typedef struct ucontext
{
- unsigned long uc_flags;
+ unsigned long int uc_flags;
struct ucontext *uc_link;
stack_t uc_stack;
mcontext_t uc_mcontext;