Pastie now auto-senses if line-wrap is a bad or good idea. Feedback?
## mark a section (Learn more)
#include <fcntl.h> #include <errno.h> #include <stdio.h> #include <unistd.h> int main() { int fd[2], err; pipe(fd); err = fcntl(fd[0], F_SETOWN, getpid()); if (err == -1) printf("fcntl failed: %d\n", errno); return 0; } /* Output: fcntl failed: 25 */
This paste will be private.
From the Design Piracy series on my blog: