mirror of https://github.com/rui314/chibicc
13 lines
191 B
C
13 lines
191 B
C
|
#include "test.h"
|
||
|
#include <float.h>
|
||
|
#include <stdalign.h>
|
||
|
#include <stdarg.h>
|
||
|
#include <stdbool.h>
|
||
|
#include <stddef.h>
|
||
|
#include <stdnoreturn.h>
|
||
|
|
||
|
int main() {
|
||
|
printf("OK\n");
|
||
|
return 0;
|
||
|
}
|