From 1737b90d795e125dbcc28ae33d27ed4fe8c5e33d Mon Sep 17 00:00:00 2001 From: rodrigc Date: Sun, 20 Sep 2015 20:15:44 +0000 Subject: Remove names from prototypes --- lib/libc/stdlib/atexit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/libc/stdlib/atexit.c') diff --git a/lib/libc/stdlib/atexit.c b/lib/libc/stdlib/atexit.c index 7e6b867..eda5703 100644 --- a/lib/libc/stdlib/atexit.c +++ b/lib/libc/stdlib/atexit.c @@ -82,8 +82,8 @@ struct atexit { static struct atexit *__atexit; /* points to head of LIFO stack */ typedef DECLARE_BLOCK(void, atexit_block, void); -int atexit_b(atexit_block func); -int __cxa_atexit(void (*func)(void *), void *arg, void *dso); +int atexit_b(atexit_block); +int __cxa_atexit(void (*)(void *), void *, void *); /* * Register the function described by 'fptr' to be called at application -- cgit v1.1