diff options
author | William Deegan <bill@baddogconsulting.com> | 2015-09-29 19:05:35 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2015-09-29 19:05:35 (GMT) |
commit | 2355e88c9637174f10c3dec3efb15ee6626fb3e5 (patch) | |
tree | 11528c27e8fc3b1b2ff0504228e95c11c6314d68 /test/RANLIB/RANLIB.py | |
parent | 089b32203cb485b9115f03f35d2b437e848c78da (diff) | |
download | SCons-2355e88c9637174f10c3dec3efb15ee6626fb3e5.zip SCons-2355e88c9637174f10c3dec3efb15ee6626fb3e5.tar.gz SCons-2355e88c9637174f10c3dec3efb15ee6626fb3e5.tar.bz2 |
fix test to run on macosx by fixing C99 non compliance
Diffstat (limited to 'test/RANLIB/RANLIB.py')
-rw-r--r-- | test/RANLIB/RANLIB.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/RANLIB/RANLIB.py b/test/RANLIB/RANLIB.py index c9fc10f..fbfe36c 100644 --- a/test/RANLIB/RANLIB.py +++ b/test/RANLIB/RANLIB.py @@ -81,6 +81,10 @@ library_function(void) test.write('main.c', r""" #include <stdlib.h> + +void +library_function(void); + int main(int argc, char *argv[]) { |