We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When compiling oink on Mac OS X using Apple LLVM version 8.0.0 (clang-800.0.38) the following warning is seen:
gcc -c -o regions.o -I.. -iquote -DNMEMDEBUG -DSIZEOF_VOIDP=4 -Wall -g -O2 regions.c In file included from regions.c:288: ../libregion/pages.c:270:3: warning: implicit declaration of function 'set_region_range' is invalid in C99 [-Wimplicit-function-declaration] set_region_range(newp, (char *)newp + request_bytes, FREEPAGE); ^
The text was updated successfully, but these errors were encountered:
Update pages.c
a8a743c
Fixed issue dsw#15. Added forward declaration of set_region_range() to remove compiler warning.
Merge pull request #16 from sam-ellis/patch-1
a63816e
Update pages.c to fix issue #15.
No branches or pull requests
When compiling oink on Mac OS X using Apple LLVM version 8.0.0 (clang-800.0.38) the following warning is seen:
The text was updated successfully, but these errors were encountered: