Skip to content

Commit

Permalink
fix compile error: libCreationTimeHelper.c:96:8: error: unknown type …
Browse files Browse the repository at this point in the history
…name bool
  • Loading branch information
sendaoYan committed Sep 5, 2024
1 parent 2ed8cb6 commit 35290e8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
* questions.
*/
#include "export.h"
#if defined(__linux__)
#if (__STDC_VERSION__ >= 199901L)
#include <stdbool.h>
#else
#define bool int
#define true 1
#define false 0
#endif
#if defined(__linux__)
#include <linux/fcntl.h>
#include <stdio.h>
#include <string.h>
Expand Down

0 comments on commit 35290e8

Please sign in to comment.