mirror of
https://github.com/rui314/chibicc
synced 2024-11-22 22:31:18 +03:00
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;
|
|
}
|