From 1fd608288ee47c2c560817f12f14b21069fed2f6 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Sat, 28 Dec 2024 16:47:43 -0800 Subject: makefile and directory structure change completely to build client and server --- src/msg/main.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/msg/main.c (limited to 'src/msg') diff --git a/src/msg/main.c b/src/msg/main.c new file mode 100644 index 0000000..c13422d --- /dev/null +++ b/src/msg/main.c @@ -0,0 +1,6 @@ +#include + +int main(int argc, char **argv) { + printf("hello world!\n"); + return 0; +} -- cgit