diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-01-03 16:13:21 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-01-03 16:13:21 +0000 |
commit | 35c2fd59ba2ed8f0cece3760155bb4f0aaba7bd0 (patch) | |
tree | c9ca7f0d3f3065d5ae9844afc9e542f29e9eba85 /posix | |
parent | 305bb37e1e4d39fe9e515fc5543fefea7c4e9653 (diff) | |
download | glibc-35c2fd59ba2ed8f0cece3760155bb4f0aaba7bd0.tar.gz glibc-35c2fd59ba2ed8f0cece3760155bb4f0aaba7bd0.tar.xz glibc-35c2fd59ba2ed8f0cece3760155bb4f0aaba7bd0.zip |
* posix/unistd.h (ctermid): Remove __nonnull attribute.
Diffstat (limited to 'posix')
-rw-r--r-- | posix/unistd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/posix/unistd.h b/posix/unistd.h index 9684126eaa..4c03c4d702 100644 --- a/posix/unistd.h +++ b/posix/unistd.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2002,2003,2004,2005 Free Software Foundation, Inc. +/* Copyright (C) 1991-2002,2003,2004,2005,2006 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 @@ -1075,7 +1075,7 @@ extern void swab (__const void *__restrict __from, void *__restrict __to, It is also found in <stdio.h>. */ #ifdef __USE_XOPEN /* Return the name of the controlling terminal. */ -extern char *ctermid (char *__s) __THROW __nonnull ((1)); +extern char *ctermid (char *__s) __THROW; #endif |