summaryrefslogtreecommitdiff
path: root/setjmp
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1997-03-20 03:17:26 +0000
committerUlrich Drepper <drepper@redhat.com>1997-03-20 03:17:26 +0000
commitd6b95af8bb2228af5de7dd19cd3fbe642815fad6 (patch)
treeb50bacb373bef27a59917fbd668db08007da437f /setjmp
parent80e41ab46eb1bb43e08802ef4ce7cde07216b07f (diff)
Change references of ANSI C to ISO C.
Diffstat (limited to 'setjmp')
-rw-r--r--setjmp/setjmp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/setjmp/setjmp.h b/setjmp/setjmp.h
index 75abb18c6d..eb4305f5bd 100644
--- a/setjmp/setjmp.h
+++ b/setjmp/setjmp.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 92, 93, 94, 95, 96 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 92, 93, 94, 95, 96, 97 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
@@ -51,7 +51,7 @@ extern int __sigsetjmp __P ((jmp_buf __env, int __savemask));
#ifndef __FAVOR_BSD
/* Set ENV to the current position and return 0, not saving the signal mask.
This is just like `sigsetjmp (ENV, 0)'.
- The ANSI C standard says `setjmp' is a macro. */
+ The ISO C standard says `setjmp' is a macro. */
#define setjmp(env) __sigsetjmp ((env), 0)
#else
/* We are in 4.3 BSD-compatibility mode in which `setjmp'
@@ -61,7 +61,7 @@ extern int __sigsetjmp __P ((jmp_buf __env, int __savemask));
#ifdef __USE_BSD
/* Set ENV to the current position and return 0, not saving the signal mask.
- This is the 4.3 BSD name for ANSI `setjmp'. */
+ This is the 4.3 BSD name for ISO `setjmp'. */
#define _setjmp(env) __sigsetjmp ((env), 0)
#endif