LibC: Oops x2, we can't use "bool" in stdlib.h either

This commit is contained in:
Andreas Kling 2019-12-26 10:30:34 +01:00
commit 9d681beaf0
Notes: sideshowbarker 2024-07-19 10:39:29 +09:00
3 changed files with 8 additions and 8 deletions

View file

@ -4,7 +4,7 @@
#include <sys/cdefs.h>
#include <sys/types.h>
__attribute__((warn_unused_result)) bool __generate_unique_filename(char* pattern);
__attribute__((warn_unused_result)) int __generate_unique_filename(char* pattern);
__BEGIN_DECLS