#include #include #include #include int main() { int fd = open("/dev/wendy_in", O_WRONLY); if (fd < 0) { printf("Error open pipe"); return 1; } const char *msg = "Hello from the other side!\n"; write(fd, msg, strlen(msg)); close(fd); return 0; }