a63a9ec808
This reverts commit 7097f052d9
.
libnl_2 needs to stay in AOSP for now for compatibility with
GPL test builds.
12 lines
238 B
C
12 lines
238 B
C
#include "netlink/netlink.h"
|
|
#include <android/log.h>
|
|
|
|
void libnl_printf(int level, char *format, ...)
|
|
{
|
|
va_list ap;
|
|
|
|
level = ANDROID_LOG_ERROR;
|
|
va_start(ap, format);
|
|
__android_log_vprint(level, "libnl_2", format, ap);
|
|
va_end(ap);
|
|
}
|