diff options
author | William Deegan <bill@baddogconsulting.com> | 2015-09-29 19:35:18 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2015-09-29 19:35:18 (GMT) |
commit | 6ea319bd567743546bb77c6440ddb80d9a63b3cb (patch) | |
tree | efef117187e6526504be7c21236644c0f08b70f8 | |
parent | 2355e88c9637174f10c3dec3efb15ee6626fb3e5 (diff) | |
download | SCons-6ea319bd567743546bb77c6440ddb80d9a63b3cb.zip SCons-6ea319bd567743546bb77c6440ddb80d9a63b3cb.tar.gz SCons-6ea319bd567743546bb77c6440ddb80d9a63b3cb.tar.bz2 |
fix C99 non compliance
-rw-r--r-- | test/RANLIB/RANLIBFLAGS.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/RANLIB/RANLIBFLAGS.py b/test/RANLIB/RANLIBFLAGS.py index 636059b..86e5283 100644 --- a/test/RANLIB/RANLIBFLAGS.py +++ b/test/RANLIB/RANLIBFLAGS.py @@ -82,6 +82,10 @@ library_function(void) test.write('main.c', r""" #include <stdlib.h> +void +library_function(void); + + int main(int argc, char *argv[]) { |