I was wondering whether the calling of a libc function in a native function done via JNI with the Android NDK, e.g.
FILE* file = fopen("sdcard/hello.txt","w+");
is actually going directly to the actual libc function or whether there is some proxy/wrapper between the call and the native function.
Does anyone have an idea?