The source project of this merge request has been removed.
print-editor: Fix compiler error due to function name conflict
This fixes the following compiler error with clang in Android NDK r27 toolchain.
print-editor.c:857:1: error: static declaration of 'open' follows non-static declaration
857 | open (GApplication *application,
| ^
stdio.h:376:5: note: previous declaration is here
376 | int open(const char*, int, ...);
| ^