8276572: Fake libsyslookup.so library causes tooling issues

Reviewed-by: shade, mcimadamore
This commit is contained in:
Andrew John Hughes 2021-11-05 21:05:42 +00:00
parent b01f1073f9
commit a472433209

View File

@ -26,3 +26,8 @@
// Note: the include below is not strictly required, as dependencies will be pulled using linker flags.
// Adding at least one #include removes unwanted warnings on some platforms.
#include <stdlib.h>
// Simple dummy function so this library appears as a normal library to tooling.
char* syslookup() {
return "syslookup";
}