2026-05-30 10:20:41 +01:00
|
|
|
#include <errno.h>
|
|
|
|
|
#include <magenta/log.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
2026-02-19 19:31:58 +00:00
|
|
|
int main(void)
|
|
|
|
|
{
|
2026-05-30 10:20:41 +01:00
|
|
|
printf("nsd running %s\n", strerror(ENOTSUP));
|
2026-02-19 19:31:58 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|