1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:07:45 +00:00

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
parent b1fc5d9143
commit 9d681beaf0
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