chibicc/test/pragma-once.c

11 lines
109 B
C
Raw Normal View History

2020-10-05 08:27:19 +03:00
#include "test.h"
#pragma once
#include "test/pragma-once.c"
int main() {
printf("OK\n");
return 0;
}