diff options
author | rodrigc <rodrigc@FreeBSD.org> | 2015-09-20 20:15:44 +0000 |
---|---|---|
committer | rodrigc <rodrigc@FreeBSD.org> | 2015-09-20 20:15:44 +0000 |
commit | 1737b90d795e125dbcc28ae33d27ed4fe8c5e33d (patch) | |
tree | e847573f86f5cc880f14b1ec59620629dd0d51e1 /lib/libc/stdlib/atexit.c | |
parent | 57be559e4abf337edf211ba16a09c41aa227d270 (diff) | |
download | FreeBSD-src-1737b90d795e125dbcc28ae33d27ed4fe8c5e33d.zip FreeBSD-src-1737b90d795e125dbcc28ae33d27ed4fe8c5e33d.tar.gz |
Remove names from prototypes
Diffstat (limited to 'lib/libc/stdlib/atexit.c')
-rw-r--r-- | lib/libc/stdlib/atexit.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 |