We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3b3f46 commit ba16934Copy full SHA for ba16934
2 files changed
docs/generators/c.md
@@ -120,6 +120,7 @@ These options may be applied as additional-properties (cli) or configOptions (pl
120
<li>if</li>
121
<li>inline</li>
122
<li>int</li>
123
+<li>linux</li>
124
<li>long</li>
125
<li>mutable</li>
126
<li>namespace</li>
modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/CLibcurlClientCodegen.java
@@ -255,7 +255,11 @@ public CLibcurlClientCodegen() {
255
// VC++ reserved keywords
256
"stdin",
257
"stdout",
258
- "stderr")
+ "stderr",
259
+
260
+ // gcc predefined macros
261
+ "linux"
262
+ )
263
);
264
265
instantiationTypes.clear();
0 commit comments