diff options
author | Yaakov Selkowitz <yselkowi@redhat.com> | 2017-12-03 22:52:13 -0600 |
---|---|---|
committer | Yaakov Selkowitz <yselkowi@redhat.com> | 2018-01-17 11:47:27 -0600 |
commit | 77f16db546d9c214f639d1ea84c58d99f9e4d282 (patch) | |
tree | 38362015be02e1450ef8c2e83d66749e587f5455 /newlib/libc/stdlib/atexit.c | |
parent | 9087163804df8af6dc2ec1f675a2341c25f7795f (diff) | |
download | newlib-77f16db546d9c214f639d1ea84c58d99f9e4d282.zip newlib-77f16db546d9c214f639d1ea84c58d99f9e4d282.tar.gz newlib-77f16db546d9c214f639d1ea84c58d99f9e4d282.tar.bz2 |
ansification: remove _EXFNPTR, _EXPARM
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
Diffstat (limited to 'newlib/libc/stdlib/atexit.c')
-rw-r--r-- | newlib/libc/stdlib/atexit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/stdlib/atexit.c b/newlib/libc/stdlib/atexit.c index 1d300bd..63617f8 100644 --- a/newlib/libc/stdlib/atexit.c +++ b/newlib/libc/stdlib/atexit.c @@ -53,7 +53,7 @@ Supporting OS subroutines required: <<close>>, <<fstat>>, <<isatty>>, */ int -atexit (void _EXFNPTR(fn, (void))) +atexit (void (*fn) (void)) { return __register_exitproc (__et_atexit, fn, NULL, NULL); } |