]> sourceware.org Git - glibc.git/commitdiff
Update.
authorAndreas Jaeger <aj@suse.de>
Tue, 21 Nov 2000 13:27:53 +0000 (13:27 +0000)
committerAndreas Jaeger <aj@suse.de>
Tue, 21 Nov 2000 13:27:53 +0000 (13:27 +0000)
NORETURN, fix parameter list.

ChangeLog
sysdeps/generic/__longjmp.c

index cd4f7ec299242906e17489a4714e61c7abf0c9ed..5b356417a6b1b0e54a94128a799588719248df63 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,7 @@
 2000-11-21  Andreas Jaeger  <aj@suse.de>
 
        * sysdeps/generic/__longjmp.c (__longjmp): Remove obsolete
-       NORETURN.
+       NORETURN, fix parameter list.
 
        * string/bug-strncat1.c (main): Fix typo.
        Patch by Bernhard Kaindl <bernhard.kaindl@suse.de>.
index 896e6aa7c81cec1dcd39f3ba0c4cc5baafe15dd7..c4287b4317ee3a73fa8edba3e25c623d0c6d81ba 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1994, 1995, 1996, 1997, 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
@@ -23,9 +23,7 @@
 /* Jump to the position specified by ENV, causing the
    setjmp call there to return VAL, or 1 if VAL is 0.  */
 void
-__longjmp (env, val)
-     const __jmp_buf env;
-     int val;
+__longjmp (__jmp_buf env, int val)
 {
   if (val == 0)
     val = 1;
This page took 0.206875 seconds and 5 git commands to generate.