1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-14 04:46:43 +00:00
termux-packages/packages/gperf/output.cc.patch
2017-11-21 23:56:34 +01:00

20 lines
451 B
Diff

--- ./src/output.cc
+++ ../src/output.cc
@@ -2083,6 +2083,16 @@
}
printf ("\n");
+ // Include stdlib.h or cstdlib header to fix errors about size_t
+ if (option[KRC] || option[C] || option[ANSIC])
+ {
+ printf("#include <stdlib.h>\n\n");
+ }
+ else if (option[CPLUSPLUS])
+ {
+ printf("#include <cstdlib>\n\n");
+ }
+
if (_charset_dependent
&& (_key_positions.get_size() > 0 || option[UPPERLOWER]))
{