diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-06-08 00:22:23 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-06-08 00:22:23 +0000 |
commit | 60d2f8f3c7f1cdacafcbd60dc004e32cc90035ca (patch) | |
tree | 29d9258b64874c6c9838757a9c67ef62a6a0868c /malloc/mtrace.c | |
parent | 2e09a79ada1f6d92809a037d41895e3d9302ad59 (diff) | |
download | glibc-60d2f8f3c7f1cdacafcbd60dc004e32cc90035ca.tar.gz glibc-60d2f8f3c7f1cdacafcbd60dc004e32cc90035ca.tar.xz glibc-60d2f8f3c7f1cdacafcbd60dc004e32cc90035ca.zip |
Use (void) in no-arguments function definitions.
Diffstat (limited to 'malloc/mtrace.c')
-rw-r--r-- | malloc/mtrace.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/malloc/mtrace.c b/malloc/mtrace.c index 62867b1182..ee941333a8 100644 --- a/malloc/mtrace.c +++ b/malloc/mtrace.c @@ -72,7 +72,7 @@ static __ptr_t (*tr_old_memalign_hook) (size_t __alignment, size_t __size, extern void tr_break (void) __THROW; libc_hidden_proto (tr_break) void -tr_break () +tr_break (void) { } libc_hidden_def (tr_break) @@ -298,7 +298,7 @@ release_libc_mem (void) don't forget to set a breakpoint on tr_break! */ void -mtrace () +mtrace (void) { #ifdef _LIBC static int added_atexit_handler; @@ -363,7 +363,7 @@ mtrace () } void -muntrace () +muntrace (void) { if (mallstream == NULL) return; |