11 lines
162 B
C
11 lines
162 B
C
#include <errno.h>
|
|
#include <magenta/log.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
int main(void)
|
|
{
|
|
printf("nsd running %s\n", strerror(ENOTSUP));
|
|
return 0;
|
|
}
|