mirror of
https://github.com/opus-tango/http-server-in-c.git
synced 2026-03-20 03:55:25 +00:00
10 lines
187 B
C
10 lines
187 B
C
#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;
|
|
} |