diff options
author | Roland McGrath <roland@gnu.org> | 2005-04-27 09:49:39 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2005-04-27 09:49:39 +0000 |
commit | fb1887c7f98a45a089720d882dfbd67bd478c1b5 (patch) | |
tree | fb17f9d3b3ac097548b7e39cbbb629255e6674a4 /posix | |
parent | dea9968599e661bd84277af681cd38b2984ddb25 (diff) | |
download | glibc-fb1887c7f98a45a089720d882dfbd67bd478c1b5.tar.gz glibc-fb1887c7f98a45a089720d882dfbd67bd478c1b5.tar.xz glibc-fb1887c7f98a45a089720d882dfbd67bd478c1b5.zip |
[BZ #877]
2005-04-27 Roland McGrath <roland@redhat.com> [BZ #877] * posix/unistd.h: Remove __nonnull from acct decl.
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 d6cd152b46..b0fba33417 100644 --- a/posix/unistd.h +++ b/posix/unistd.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2003, 2004, 2005 Free Software Foundation, Inc. +/* Copyright (C) 1991-2002,2003,2004,2005 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 @@ -840,7 +840,7 @@ extern int profil (unsigned short int *__sample_buffer, size_t __size, /* Turn accounting on if NAME is an existing file. The system will then write a record for each process as it terminates, to this file. If NAME is NULL, turn accounting off. This call is restricted to the super-user. */ -extern int acct (__const char *__name) __THROW __nonnull ((1)); +extern int acct (__const char *__name) __THROW; /* Successive calls return the shells listed in `/etc/shells'. */ |