mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Changes done with Coccinelle:
@r1@
identifier fn;
typedef bool;
symbol false;
symbol true;
@@
bool fn ( ... )
{
<...
return
(
- 0
+ false
|
- 1
+ true
)
;
...>
}
Coccinelle patch sourced from
torvalds/linux@46b5c9b856.
4.7 KiB
4.7 KiB