diff options
author | Cara Salter <cara@devcara.com> | 2022-08-15 23:43:52 -0400 |
---|---|---|
committer | Cara Salter <cara@devcara.com> | 2022-08-15 23:43:52 -0400 |
commit | e6ae01729aeaffc560c59e7887c5743521677e4d (patch) | |
tree | 34ea1333a9c0ce85ac72852cd7fd1b85651dda9d /src/main.c | |
parent | f15f93f6e55d6c09b5f556f8fc8e21c29f549a96 (diff) | |
download | cmud-e6ae01729aeaffc560c59e7887c5743521677e4d.tar.gz cmud-e6ae01729aeaffc560c59e7887c5743521677e4d.zip |
data work
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,7 +1,8 @@ /** - * Creates a socket for the server + * Initializes main game loop and hands off to listeners * */ #include "server.h" +#include <stdlib.h> #include <stdio.h> /** @@ -12,9 +13,7 @@ int main() { int err = 0; server_t server = {0}; - err = server_listen(&server); - if (err) { printf("Failed to listen on address"); return err; |