TCC: Difference between revisions

Jump to navigation Jump to search
[unchecked revision][unchecked revision]
Content deleted Content added
m Bot: Replace deprecated source tag with syntaxhighlight
m Bot: Replace deprecated source tag with syntaxhighlight
 
Line 23:
4. Open Notepad or another text editor, and enter this:
 
<sourcesyntaxhighlight lang="winbatch">
@echo off
 
Line 96:
 
:finished
</syntaxhighlight>
</source>
 
5. Save to tcc-0.9.26 with any name you want, but the extension MUST be .bat. If you use notepad, you will have to change the type from "Text Documents" to "All Files".
Line 253:
TCC doesn't include stdint.h, but all typedefs required are provided in stddef.h.
To use stdint.h place the following code in your kernels include path as stdint.h. This will make your code compatible with both gcc and tcc.
<sourcesyntaxhighlight lang="c">
/* stdint.h */
 
Line 263:
#include_next <stdint.h>
#endif
</syntaxhighlight>
</source>
 
[[Category:C]]