diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2005-10-29 11:37:42 +1000 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2005-10-29 11:37:42 +1000 |
commit | 22e48cd66f34efa525026c2a5192ad4ffe238b9c (patch) | |
tree | 7c5107827e89a91c2fc0be5d679f0e1de9829ee6 | |
parent | Copyright/licence updates and remove all traces of sys/cdefs.h (diff) | |
download | dash-22e48cd66f34efa525026c2a5192ad4ffe238b9c.tar.gz dash-22e48cd66f34efa525026c2a5192ad4ffe238b9c.zip |
[SIGNAL] Removed use of __P from error.h
This is the only instance of __P in the entire source so it makes sense to get rid of it rather than making it work with klibc.
Diffstat (limited to '')
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/error.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 461b08f..231a37c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,7 @@ * Updated BSD licence to 3-clause version per NetBSD. * Updated copyright. * Removed CVS IDs and inclusion of sys/cdefs.h. + * Removed use of __P from error.h. 2005-10-26 Herbert Xu <herbert@gondor.apana.org.au> diff --git a/src/error.h b/src/error.h index 108736b..dd1fc3f 100644 --- a/src/error.h +++ b/src/error.h @@ -91,7 +91,7 @@ extern int exsig; 0; \ }) #ifdef REALLY_SMALL -void __inton __P((void)); +void __inton(void); #define INTON __inton() #else #define INTON \ |