mirror of
https://github.com/atom/atom.git
synced 2026-02-15 00:55:14 -05:00
10 lines
171 B
C++
10 lines
171 B
C++
#include <stdio.h>
|
|
#include "lib1.hpp"
|
|
|
|
int main(int argc, char *argv[]) {
|
|
fprintf(stdout, "Hello from program.c\n");
|
|
fflush(stdout);
|
|
lib1_function();
|
|
return 0;
|
|
}
|