This is the mail archive of the libc-hacker@sourceware.org mailing list for the glibc project.
Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
| Other format: | [Raw text] | |
Hi!
ctermid actually handles NULL argument and is supposed to handle it:
http://www.opengroup.org/onlinepubs/009695399/functions/ctermid.html
"If s is a null pointer, the string shall be generated in an area that
may be static (and therefore may be overwritten by each call), the
address of which shall be returned."
2006-01-03 Jakub Jelinek <jakub@redhat.com>
* posix/unistd.h (ctermid): Remove __nonnull attribute.
--- libc/posix/unistd.h 16 Dec 2005 00:15:19 -0000 1.139
+++ libc/posix/unistd.h 3 Jan 2006 08:17:45 -0000
@@ -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 *__restri
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
Jakub
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |