add makefile and webserver file

This commit is contained in:
Nayan
2025-05-05 20:22:15 -04:00
parent ecdf8059eb
commit d9014718ed
2 changed files with 18 additions and 0 deletions

10
webserver.c Normal file
View File

@@ -0,0 +1,10 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
// #include <pthread.h>
int main(int argc, char **argv) {
printf("Hello world!\n");
return 0;
}