diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-03-17 00:49:09 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-03-17 00:49:09 +0000 |
commit | 7c91639ec9a640dd9637495a329468aea5818529 (patch) | |
tree | 0a6dd816013bca875841a07493a69ad6ac45a8da /sysdeps/unix/sysv/linux/ia64/makecontext.c | |
parent | e1f578d63b68f2c2b55fbd4e46086f1878de0cee (diff) | |
download | glibc-7c91639ec9a640dd9637495a329468aea5818529.tar.gz glibc-7c91639ec9a640dd9637495a329468aea5818529.tar.xz glibc-7c91639ec9a640dd9637495a329468aea5818529.zip |
Update.
2001-03-16 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/linux/ia64/makecontext.c (__makecontext): Internationalize.
Diffstat (limited to 'sysdeps/unix/sysv/linux/ia64/makecontext.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/ia64/makecontext.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/unix/sysv/linux/ia64/makecontext.c b/sysdeps/unix/sysv/linux/ia64/makecontext.c index 9f80b114bd..24a7d04c77 100644 --- a/sysdeps/unix/sysv/linux/ia64/makecontext.c +++ b/sysdeps/unix/sysv/linux/ia64/makecontext.c @@ -1,6 +1,6 @@ /* Copyright (C) 2001 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by David Mosberger-Tang <davidm@hpl.hp.com>. + Contributed by David Mosberger-Tang <davidm@hpl.hp.com>. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as @@ -21,8 +21,8 @@ #include <stdio.h> #include <stdlib.h> #include <ucontext.h> +#include <sys/rse.h> -#include <ia64/rse.h> struct fdesc { @@ -59,8 +59,8 @@ __makecontext (ucontext_t *ucp, void (*func) (void), int argc, ...) if (argc > 8) { - fprintf (stderr, "__makecontext: does not know how to handle more " - "than 8 arguments\n"); + fprintf (stderr, _("\ +makecontext: does not know how to handle more than 8 arguments\n")); exit (-1); } |