#include <errno.h>
#include <stdio.h>
#include <string.h>
int main(void)
{
printf("devmd running %s\n", strerror(EDEADLK));
return 0;
}