diff options
author | Vitaly Buka <vitalybuka@google.com> | 2016-11-16 21:51:39 +0000 |
---|---|---|
committer | Vitaly Buka <vitalybuka@google.com> | 2016-11-16 21:51:39 +0000 |
commit | e596986a44d1771d01da20d7b702da7fa1c7af15 (patch) | |
tree | 5b47f200e262b52611bbcc39f83b51fb4274f4e2 /llvm/tools/llvm-c-test | |
parent | 7d0c869b86d071aeb6a0c6447c0d03e08b50cab3 (diff) | |
download | bcm5719-llvm-e596986a44d1771d01da20d7b702da7fa1c7af15.tar.gz bcm5719-llvm-e596986a44d1771d01da20d7b702da7fa1c7af15.zip |
Fix "isn't a prototype" warning
llvm-svn: 287161
Diffstat (limited to 'llvm/tools/llvm-c-test')
-rw-r--r-- | llvm/tools/llvm-c-test/llvm-c-test.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/llvm-c-test/llvm-c-test.h b/llvm/tools/llvm-c-test/llvm-c-test.h index 0401f1dbae3..2a7090484b0 100644 --- a/llvm/tools/llvm-c-test/llvm-c-test.h +++ b/llvm/tools/llvm-c-test/llvm-c-test.h @@ -53,8 +53,8 @@ int llvm_echo(void); int llvm_test_diagnostic_handler(void); // attributes.c -int llvm_test_function_attributes(); -int llvm_test_callsite_attributes(); +int llvm_test_function_attributes(void); +int llvm_test_callsite_attributes(void); #ifdef __cplusplus } |