You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
207 B
13 lines
207 B
4 months ago
|
// RUN: %clang_scs %s -o %t
|
||
|
// RUN: %run %t
|
||
|
|
||
|
// Basic smoke test for the runtime
|
||
|
|
||
|
#include "libc_support.h"
|
||
|
#include "minimal_runtime.h"
|
||
|
|
||
|
int scs_main(void) {
|
||
|
scs_fputs_stdout("In main.\n");
|
||
|
return 0;
|
||
|
}
|