KCC - Kayte C Compiler 1.10.0
A C compiler implementation with preprocessor, lexer, parser, and code generator
Loading...
Searching...
No Matches
kcc_stdio.h
1#ifndef KCC_STDIO_H
2#define KCC_STDIO_H
3
4// Always include the system stdio first
5#include_next <stdio.h>
6
7// Add your custom macros/extensions here
8
9#endif