blob: fcae386fc619d81b34b8fe2d6ddaa8372b80c844 (
plain) (
tree)
|
|
#include <err.h>
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
int
main(void)
{
if (-1 == pledge("stdio", NULL))
err(EXIT_FAILURE, "pledge");
puts("Status: 200 OK\r");
puts("Content-Type: text/html\r");
puts("\r");
puts("Hello, world!\n");
return(EXIT_SUCCESS);
}
|