mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 18:58:08 -07:00
As bool definition is very private, replacement with stdbool.h doesn't affect ABI or API Closes: https://bugs.gentoo.org/943734 Signed-off-by: NHOrus <jy6x2b32pie9@yahoo.com> Closes: https://github.com/gentoo/gentoo/pull/40454 Signed-off-by: Sam James <sam@gentoo.org>
15 lines
305 B
Diff
15 lines
305 B
Diff
Used for declaration of private function only, so change
|
|
causes no visible effects
|
|
https://bugs.gentoo.org/943734
|
|
--- a/src/timer.c
|
|
+++ b/src/timer.c
|
|
@@ -48,7 +48,7 @@
|
|
#include <lwp/timer.h>
|
|
#include "lwp.private.h"
|
|
|
|
-typedef unsigned char bool;
|
|
+#include <stdbool.h>
|
|
|
|
#define expiration TotalTime
|
|
|