From 8184adabe5018ff930fde64456029471c1ebcd2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=9C=E9=83=A8=E6=98=8C=E5=B9=B3?= Date: Wed, 25 Dec 2019 13:40:10 +0900 Subject: internal/stdbool.h rework Noticed that internal/stdbool.h and addr2line.c are the only two place where missing/stdbool.h is included. Why not delete the file so that we can merge internal/stdbool.h and missing/stdbool.h into one. --- missing/stdbool.h | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 missing/stdbool.h (limited to 'missing') diff --git a/missing/stdbool.h b/missing/stdbool.h deleted file mode 100644 index f370e01e92..0000000000 --- a/missing/stdbool.h +++ /dev/null @@ -1,20 +0,0 @@ -/* - * missing/stdbool.h: Quick alternative of C99 stdbool.h - */ - -#ifndef _MISSING_STDBOOL_H_ -#define _MISSING_STDBOOL_H_ - -#ifndef __bool_true_false_are_defined -# ifndef __cplusplus -# undef bool -# undef false -# undef true -# define bool signed char -# define false 0 -# define true 1 -# define __bool_true_false_are_defined 1 -# endif -#endif - -#endif /* _MISSING_STDBOOL_H_ */ -- cgit v1.2.3